diff options
author | José Fonseca <jfonseca@vmware.com> | 2010-02-04 14:34:33 +0000 |
---|---|---|
committer | José Fonseca <jfonseca@vmware.com> | 2010-02-04 14:39:30 +0000 |
commit | 1207098deefb83559ba275e89f2bd154a65d21ca (patch) | |
tree | 94e50f77587ed128b0da7778edaef4d16cecf949 /src/gallium/auxiliary/os | |
parent | f1b07f0220bd71c86c977ba04cf20cf90d5e8958 (diff) |
os: Add missing dummy threading definitions.
Diffstat (limited to 'src/gallium/auxiliary/os')
-rw-r--r-- | src/gallium/auxiliary/os/os_thread.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/os/os_thread.h b/src/gallium/auxiliary/os/os_thread.h index 63108605d3..2da5fd7738 100644 --- a/src/gallium/auxiliary/os/os_thread.h +++ b/src/gallium/auxiliary/os/os_thread.h @@ -167,6 +167,25 @@ typedef unsigned pipe_condvar; /** Dummy definitions */ typedef unsigned pipe_thread; + +#define PIPE_THREAD_ROUTINE( name, param ) \ + void * name( void *param ) + +static INLINE pipe_thread pipe_thread_create( void *(* routine)( void *), void *param ) +{ + return 0; +} + +static INLINE int pipe_thread_wait( pipe_thread thread ) +{ + return -1; +} + +static INLINE int pipe_thread_destroy( pipe_thread thread ) +{ + return -1; +} + typedef unsigned pipe_mutex; typedef unsigned pipe_condvar; |