From 0584aa354014e91a9036bc51bad438e8fddaf15f Mon Sep 17 00:00:00 2001 From: Garrett D'Amore Date: Sat, 12 Aug 2017 07:48:21 -0700 Subject: Moved a few private test items into test-specific header. --- src/nng_compat.c | 34 ---------------------------------- 1 file changed, 34 deletions(-) (limited to 'src/nng_compat.c') diff --git a/src/nng_compat.c b/src/nng_compat.c index 710be9be..2593a0dd 100644 --- a/src/nng_compat.c +++ b/src/nng_compat.c @@ -864,37 +864,3 @@ nn_term(void) // in a library -- only e.g. atexit() and similar. nng_closeall(); } - -// Internal test support routines. - -void -nn_sleep(uint64_t msec) -{ - nng_usleep(msec * 1000); -} - -uint64_t -nn_clock(void) -{ - return (nng_clock()); -} - -extern void nni_panic(const char *, ...); - -int -nn_thread_init(struct nn_thread *thr, void (*func)(void *), void *arg) -{ - int rv; - - rv = nng_thread_create(&thr->thr, func, arg); - if (rv != 0) { - nni_panic("Cannot create thread: %s", nng_strerror(rv)); - } - return (rv); -} - -void -nn_thread_term(struct nn_thread *thr) -{ - nng_thread_destroy(thr->thr); -} -- cgit v1.2.3-70-g09d2