summaryrefslogtreecommitdiff
path: root/src/core/msgqueue.h
diff options
context:
space:
mode:
authorGarrett D'Amore <garrett@damore.org>2018-04-24 15:32:24 -0700
committerGarrett D'Amore <garrett@damore.org>2018-04-24 15:32:24 -0700
commitc337628a3a4ec6bbad4fe062bd281f13ce455e54 (patch)
tree2224e6ad2e1161210ed1fb2fee4383b87fd1ad22 /src/core/msgqueue.h
parentfdefff742662ed4eb476bf19b9dda245f86bc406 (diff)
downloadnng-c337628a3a4ec6bbad4fe062bd281f13ce455e54.tar.gz
nng-c337628a3a4ec6bbad4fe062bd281f13ce455e54.tar.bz2
nng-c337628a3a4ec6bbad4fe062bd281f13ce455e54.zip
fixes #364 kill off nni_msgq_set_best_effort()
Diffstat (limited to 'src/core/msgqueue.h')
-rw-r--r--src/core/msgqueue.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/core/msgqueue.h b/src/core/msgqueue.h
index 65215bd0..7dc5800d 100644
--- a/src/core/msgqueue.h
+++ b/src/core/msgqueue.h
@@ -63,12 +63,6 @@ extern void nni_msgq_set_put_error(nni_msgq *, int);
// Readers (nni_msgq_put*) are unaffected.
extern void nni_msgq_set_get_error(nni_msgq *, int);
-// nni_msgq_set_best_effort marks the message queue best effort on send.
-// What this does is treat the message queue condition as if it were
-// successful, returning 0, and discarding the message. If zero is
-// passed then this mode is reset to normal.
-extern void nni_msgq_set_best_effort(nni_msgq *, bool);
-
// nni_msgq_filter is a callback function used to filter messages.
// The function is called on entry (put) or exit (get). The void
// argument is an opaque pointer supplied with the function at registration