diff options
author | Sander Vrijders <sander.vrijders@intec.ugent.be> | 2017-01-05 10:54:28 +0100 |
---|---|---|
committer | Sander Vrijders <sander.vrijders@intec.ugent.be> | 2017-01-05 10:54:28 +0100 |
commit | b010708bd8beef1a186679d2a2ecca7c48fddfdc (patch) | |
tree | 8924ee430d2c33631468ae9be56a7487c6f6448b /src/ipcpd | |
parent | e0db38c8fcd7495d990698e86212a70b8440cad0 (diff) | |
parent | 51d814cd8071684150cae474dde680781ea5ce1e (diff) | |
download | ouroboros-b010708bd8beef1a186679d2a2ecca7c48fddfdc.tar.gz ouroboros-b010708bd8beef1a186679d2a2ecca7c48fddfdc.zip |
Merged in dstaesse/ouroboros/be-fixes (pull request #338)
ipcpd: Fix state in ipcp_boot
Diffstat (limited to 'src/ipcpd')
-rw-r--r-- | src/ipcpd/ipcp.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/ipcpd/ipcp.c b/src/ipcpd/ipcp.c index e44fafe2..2e4c3fca 100644 --- a/src/ipcpd/ipcp.c +++ b/src/ipcpd/ipcp.c @@ -334,6 +334,9 @@ int ipcp_init(enum ipcp_type type, struct ipcp_ops * ops) int ipcp_boot() { int t; + + ipcp_set_state(IPCP_INIT); + for (t = 0; t < IPCPD_THREADPOOL_SIZE; ++t) { if (pthread_create(&ipcpi.threadpool[t], NULL, ipcp_main_loop, NULL)) { @@ -346,8 +349,6 @@ int ipcp_boot() } } - ipcpi.state = IPCP_INIT; - return 0; } |