diff options
author | Sander Vrijders <sander.vrijders@ugent.be> | 2017-03-21 18:01:43 +0100 |
---|---|---|
committer | Sander Vrijders <sander.vrijders@ugent.be> | 2017-03-21 18:01:43 +0100 |
commit | 1d0e634a651f234c3942c6b82164470fa2432058 (patch) | |
tree | 6977229f9148774a4338c489134207ab8b0f5c9f /src/ipcpd/normal/pol/complete.c | |
parent | 122202761b3fb09a883ca8081eb1eb4243cd484d (diff) | |
download | ouroboros-1d0e634a651f234c3942c6b82164470fa2432058.tar.gz ouroboros-1d0e634a651f234c3942c6b82164470fa2432058.zip |
ipcpd: normal: Several bugfixes
These solve several bugfixes in the normal.
Diffstat (limited to 'src/ipcpd/normal/pol/complete.c')
-rw-r--r-- | src/ipcpd/normal/pol/complete.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/ipcpd/normal/pol/complete.c b/src/ipcpd/normal/pol/complete.c index 1f3f6031..635b573b 100644 --- a/src/ipcpd/normal/pol/complete.c +++ b/src/ipcpd/normal/pol/complete.c @@ -131,6 +131,8 @@ void * complete_create(struct nbs * nbs, allocator, (void *) complete)) return NULL; + pthread_join(complete->allocator, NULL); + if (pthread_create(&complete->listener, NULL, listener, (void *) complete)) return NULL; |