diff options
author | Timothy Arceri <[email protected]> | 2017-03-05 12:32:02 +1100 |
---|---|---|
committer | Timothy Arceri <[email protected]> | 2017-03-07 08:48:16 +1100 |
commit | acdcaf9be4695ccdc4a589a3416591dd316e876c (patch) | |
tree | 7c7e1e3f0c1e7509141ed3c54571ebf847321f53 /src/gallium/auxiliary/os/os_thread.h | |
parent | 2efddc63ee864ab917e444b68a7c2dcf520d451e (diff) |
gallium/util: remove pipe_static_mutex()
This was made unnecessary with fd33a6bcd7f12.
Reviewed-by: Marek Olšák <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary/os/os_thread.h')
-rw-r--r-- | src/gallium/auxiliary/os/os_thread.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/gallium/auxiliary/os/os_thread.h b/src/gallium/auxiliary/os/os_thread.h index af350b878ab..a6a9fea1f7e 100644 --- a/src/gallium/auxiliary/os/os_thread.h +++ b/src/gallium/auxiliary/os/os_thread.h @@ -108,9 +108,6 @@ static inline int pipe_thread_is_self( pipe_thread thread ) return 0; } -#define pipe_static_mutex(mutex) \ - static mtx_t mutex = _MTX_INITIALIZER_NP - #define pipe_mutex_init(mutex) \ (void) mtx_init(&(mutex), mtx_plain) |