diff options
| author | Garrett D'Amore <garrett@damore.org> | 2017-06-09 06:33:23 -0700 |
|---|---|---|
| committer | Garrett D'Amore <garrett@damore.org> | 2017-06-09 06:33:23 -0700 |
| commit | 4044f93afb21f2a5700eb312f1daa6e2a0152ab6 (patch) | |
| tree | 005b935b750349842f37ae93270194b537c67e1d /src | |
| parent | 23898a85c30d8f4f230303c362e91074a2b29b71 (diff) | |
| download | nng-4044f93afb21f2a5700eb312f1daa6e2a0152ab6.tar.gz nng-4044f93afb21f2a5700eb312f1daa6e2a0152ab6.tar.bz2 nng-4044f93afb21f2a5700eb312f1daa6e2a0152ab6.zip | |
pipe destroy need not be synchronous.
Diffstat (limited to 'src')
| -rw-r--r-- | src/core/pipe.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/pipe.c b/src/core/pipe.c index d5a9ed85..dd597feb 100644 --- a/src/core/pipe.c +++ b/src/core/pipe.c @@ -195,7 +195,7 @@ nni_pipe_destroy(nni_pipe *p) { NNI_ASSERT(p->p_refcnt == 0); - nni_objhash_unref_wait(nni_allpipes, p->p_id); + nni_objhash_unref(nni_allpipes, p->p_id); } |
