Use default component stack size where appropriate

This commit is contained in:
Christian Helmuth
2016-11-28 15:13:14 +01:00
parent 7eabe482b6
commit 53271d8c5f
89 changed files with 95 additions and 306 deletions

View File

@@ -159,7 +159,7 @@ struct Main
************/
namespace Server {
char const *name() { return "nic_drv_ep"; }
size_t stack_size() { return 2*1024*sizeof(long); }
void construct(Entrypoint &ep) { static Main server(ep); }
char const *name() { return "nic_drv_ep"; }
size_t stack_size() { return 16*1024*sizeof(long); }
void construct(Entrypoint &ep) { static Main server(ep); }
}