diff options
author | michaelld <michaelld@221aa14e-8319-0410-a670-987f0aec2ac5> | 2007-08-17 20:34:21 +0000 |
---|---|---|
committer | michaelld <michaelld@221aa14e-8319-0410-a670-987f0aec2ac5> | 2007-08-17 20:34:21 +0000 |
commit | 8e44b73ab454947a1d2b97f8e793d1e481db2b5a (patch) | |
tree | 000b08e154672e8b05735947a7b85ee5c2b64724 /usrp/host/lib/legacy/mld_threads.h | |
parent | 7dca4d18c5ebaf1bca2a0413f5dbb2941b396828 (diff) |
Changes so that OSX's FUSB will use gr's omnithreads instead of pthreads.
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@6149 221aa14e-8319-0410-a670-987f0aec2ac5
Diffstat (limited to 'usrp/host/lib/legacy/mld_threads.h')
-rw-r--r-- | usrp/host/lib/legacy/mld_threads.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usrp/host/lib/legacy/mld_threads.h b/usrp/host/lib/legacy/mld_threads.h index 1653e83ebd..6e60e8837e 100644 --- a/usrp/host/lib/legacy/mld_threads.h +++ b/usrp/host/lib/legacy/mld_threads.h @@ -27,8 +27,9 @@ /* classes which allow for either pthreads or omni_threads */ +#define __macos__ #ifdef _USE_OMNI_THREADS_ -#include <gnuradio/omnithread.h> +#include <omnithread.h> #else #include <pthread.h> #endif |