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/rtasm | |
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/rtasm')
-rw-r--r-- | src/gallium/auxiliary/rtasm/rtasm_execmem.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/rtasm/rtasm_execmem.c b/src/gallium/auxiliary/rtasm/rtasm_execmem.c index f7e605e9563..a60d52174ae 100644 --- a/src/gallium/auxiliary/rtasm/rtasm_execmem.c +++ b/src/gallium/auxiliary/rtasm/rtasm_execmem.c @@ -63,7 +63,7 @@ #define EXEC_HEAP_SIZE (10*1024*1024) -pipe_static_mutex(exec_mutex); +static mtx_t exec_mutex = _MTX_INITIALIZER_NP; static struct mem_block *exec_heap = NULL; static unsigned char *exec_mem = NULL; |