diff options
author | Jakob Bornecrantz <jakob@vmware.com> | 2009-06-05 02:57:19 +0100 |
---|---|---|
committer | Jakob Bornecrantz <jakob@vmware.com> | 2009-06-05 02:57:19 +0100 |
commit | d4c578ae415623bdbc12885f93405b43141cc09a (patch) | |
tree | 367ab7438cb3e16b029dbeb7f92118cf9d8858fc | |
parent | 76b3072e9b7b8f98e926d531c0d63a0cb294e56d (diff) |
gallium: Make pipe thread say if it has condvars or not
-rw-r--r-- | src/gallium/include/pipe/p_thread.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/include/pipe/p_thread.h b/src/gallium/include/pipe/p_thread.h index de55e99ed4..df6d38904a 100644 --- a/src/gallium/include/pipe/p_thread.h +++ b/src/gallium/include/pipe/p_thread.h @@ -43,6 +43,8 @@ #include <pthread.h> /* POSIX threads headers */ #include <stdio.h> /* for perror() */ +#define PIPE_THREAD_HAVE_CONDVAR + typedef pthread_t pipe_thread; #define PIPE_THREAD_ROUTINE( name, param ) \ |