diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-06-28 09:14:42 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-06-28 09:14:42 -0400 |
commit | 9cf335c9a5fe6767e90cc5cfdc1f5c95465edb10 (patch) | |
tree | 04e771dcb1c0c577b221a5a4f4b11ffa677972af /src/common/include.am | |
parent | 544ab27a949406628809869111b7288017a5bcb1 (diff) | |
download | tor-9cf335c9a5fe6767e90cc5cfdc1f5c95465edb10.tar.gz tor-9cf335c9a5fe6767e90cc5cfdc1f5c95465edb10.zip |
Extract threading code into a new library.
Note that the workqueue code does *not* go here: it is logically at
a higher level, since it needs to use libevent and the networking
stack.
Diffstat (limited to 'src/common/include.am')
-rw-r--r-- | src/common/include.am | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/common/include.am b/src/common/include.am index 14e7dcb9fc..9ed5b30d3a 100644 --- a/src/common/include.am +++ b/src/common/include.am @@ -17,13 +17,6 @@ else libor_extra_source= endif -if THREADS_PTHREADS -threads_impl_source=src/common/compat_pthreads.c -endif -if THREADS_WIN32 -threads_impl_source=src/common/compat_winthreads.c -endif - if BUILD_READPASSPHRASE_C readpassphrase_source=src/ext/readpassphrase.c else @@ -34,7 +27,6 @@ LIBOR_A_SRC = \ src/common/address_set.c \ src/common/buffers.c \ src/common/compat.c \ - src/common/compat_threads.c \ src/common/compat_time.c \ src/common/conffile.c \ src/common/memarea.c \ @@ -44,7 +36,6 @@ LIBOR_A_SRC = \ src/common/token_bucket.c \ src/common/workqueue.c \ $(libor_extra_source) \ - $(threads_impl_source) \ $(readpassphrase_source) src/common/src_common_libor_testing_a-log.$(OBJEXT) \ @@ -77,7 +68,6 @@ COMMONHEADERS = \ src/common/buffers.h \ src/common/compat.h \ src/common/compat_libevent.h \ - src/common/compat_threads.h \ src/common/compat_time.h \ src/common/conffile.h \ src/common/handles.h \ |