mirror of
https://github.com/genodelabs/genode.git
synced 2025-05-30 14:14:31 +00:00
terminal: increase stack size
This commit is contained in:
parent
baf61df0fd
commit
3cc2a3f085
@ -499,12 +499,15 @@ namespace Terminal {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
extern "C" void wait_for_continue();
|
||||||
|
|
||||||
|
|
||||||
int main(int, char **)
|
int main(int, char **)
|
||||||
{
|
{
|
||||||
using namespace Genode;
|
using namespace Genode;
|
||||||
|
|
||||||
log("--- terminal service started ---");
|
log("--- terminal service started ---");
|
||||||
|
wait_for_continue();
|
||||||
|
|
||||||
static Framebuffer::Connection framebuffer;
|
static Framebuffer::Connection framebuffer;
|
||||||
static Input::Connection input;
|
static Input::Connection input;
|
||||||
@ -512,7 +515,7 @@ int main(int, char **)
|
|||||||
static Cap_connection cap;
|
static Cap_connection cap;
|
||||||
|
|
||||||
/* initialize entry point that serves the root interface */
|
/* initialize entry point that serves the root interface */
|
||||||
enum { STACK_SIZE = sizeof(addr_t)*1024 };
|
enum { STACK_SIZE = 2*sizeof(addr_t)*1024 };
|
||||||
static Rpc_entrypoint ep(&cap, STACK_SIZE, "terminal_ep");
|
static Rpc_entrypoint ep(&cap, STACK_SIZE, "terminal_ep");
|
||||||
|
|
||||||
static Sliced_heap sliced_heap(env()->ram_session(), env()->rm_session());
|
static Sliced_heap sliced_heap(env()->ram_session(), env()->rm_session());
|
||||||
|
Loading…
x
Reference in New Issue
Block a user