diff options
| author | Garrett D'Amore <garrett@damore.org> | 2017-03-11 22:38:21 -0800 |
|---|---|---|
| committer | Garrett D'Amore <garrett@damore.org> | 2017-03-11 22:38:21 -0800 |
| commit | 3d4be5126f91978b7d7349de79334ecfc8fc2afe (patch) | |
| tree | c8cfadbb1096e99cad21bddbb9fe9ff7b5dd175a /src/core/msgqueue.h | |
| parent | 3d90bae8eda62fecdf367932fca591b965838e20 (diff) | |
| download | nng-3d4be5126f91978b7d7349de79334ecfc8fc2afe.tar.gz nng-3d4be5126f91978b7d7349de79334ecfc8fc2afe.tar.bz2 nng-3d4be5126f91978b7d7349de79334ecfc8fc2afe.zip | |
Notification working - separate thread now.
Diffstat (limited to 'src/core/msgqueue.h')
| -rw-r--r-- | src/core/msgqueue.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/msgqueue.h b/src/core/msgqueue.h index 51143706..682c9821 100644 --- a/src/core/msgqueue.h +++ b/src/core/msgqueue.h @@ -39,8 +39,8 @@ extern int nni_msgq_canget(nni_msgq *); extern int nni_msgq_canput(nni_msgq *); extern void nni_msgq_aio_put(nni_msgq *, nni_aio *); extern void nni_msgq_aio_get(nni_msgq *, nni_aio *); -extern int nni_msgq_aio_notify_get(nni_msgq *, nni_aio *); -extern int nni_msgq_aio_notify_put(nni_msgq *, nni_aio *); +extern void nni_msgq_aio_notify_get(nni_msgq *, nni_aio *); +extern void nni_msgq_aio_notify_put(nni_msgq *, nni_aio *); extern void nni_msgq_aio_cancel(nni_msgq *, nni_aio *); // nni_msgq_put puts the message to the queue. It blocks until it |
