summaryrefslogtreecommitdiff
path: root/src/core/msgqueue.h
diff options
context:
space:
mode:
authorGarrett D'Amore <garrett@damore.org>2019-02-23 18:22:05 -0800
committerGarrett D'Amore <garrett@damore.org>2019-02-23 18:22:05 -0800
commit7a895e10d8a08b66d2d416422d3c6aa0c2838d6f (patch)
tree844dd1526a8d32d695e6491e075992a72273ef47 /src/core/msgqueue.h
parenta67f63f00811de2a7af3b419a8fb354c059badc7 (diff)
downloadnng-7a895e10d8a08b66d2d416422d3c6aa0c2838d6f.tar.gz
nng-7a895e10d8a08b66d2d416422d3c6aa0c2838d6f.tar.bz2
nng-7a895e10d8a08b66d2d416422d3c6aa0c2838d6f.zip
fixes #892 remove statistics from message queues
Diffstat (limited to 'src/core/msgqueue.h')
-rw-r--r--src/core/msgqueue.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/core/msgqueue.h b/src/core/msgqueue.h
index 3340e846..44f9e765 100644
--- a/src/core/msgqueue.h
+++ b/src/core/msgqueue.h
@@ -85,13 +85,4 @@ extern int nni_msgq_len(nni_msgq *mq);
extern int nni_msgq_get_recvable(nni_msgq *mq, nni_pollable **);
extern int nni_msgq_get_sendable(nni_msgq *mq, nni_pollable **);
-// message queues keep statistics
-extern uint64_t nni_msgq_stat_get_bytes(nni_msgq *);
-extern uint64_t nni_msgq_stat_put_bytes(nni_msgq *);
-extern uint64_t nni_msgq_stat_get_msgs(nni_msgq *);
-extern uint64_t nni_msgq_stat_put_msgs(nni_msgq *);
-extern uint64_t nni_msgq_stat_get_errs(nni_msgq *);
-extern uint64_t nni_msgq_stat_put_errs(nni_msgq *);
-extern uint64_t nni_msgq_stat_discards(nni_msgq *);
-
#endif // CORE_MSQUEUE_H