From b84aa64dcbfb92d31cef10f2f45025a67f2418e4 Mon Sep 17 00:00:00 2001 From: Igor Sysoev Date: Thu, 24 Aug 2017 17:43:32 +0300 Subject: Removed configure option --no-threads. --- src/nxt_thread_id.h | 16 ---------------- 1 file changed, 16 deletions(-) (limited to 'src/nxt_thread_id.h') diff --git a/src/nxt_thread_id.h b/src/nxt_thread_id.h index d083b8fc..f8a52533 100644 --- a/src/nxt_thread_id.h +++ b/src/nxt_thread_id.h @@ -8,9 +8,6 @@ #define _NXT_UNIX_THREAD_ID_H_INCLUDED_ -#if (NXT_THREADS) - - #if (NXT_LINUX) typedef pid_t nxt_tid_t; @@ -65,17 +62,4 @@ nxt_thread_handle_equal(th0, th1) \ pthread_equal(th0, th1) -#else /* !(NXT_THREADS) */ - -typedef uint32_t nxt_tid_t; -typedef uint32_t nxt_thread_handle_t; - - -#define \ -nxt_thread_tid(thr) \ - 0 - -#endif - - #endif /* _NXT_UNIX_THREAD_ID_H_INCLUDED_ */ -- cgit