X-Git-Url: https://git.libre-soc.org/?a=blobdiff_plain;f=src%2Fgallium%2Fauxiliary%2Frtasm%2Frtasm_execmem.c;fp=src%2Fgallium%2Fauxiliary%2Frtasm%2Frtasm_execmem.c;h=fcb67a62de0fd23759e0a2f0b788029d06e1242f;hb=628e84a58fdb26c63a705861b92f65f242613321;hp=a1c3de95fd5cc16c8f6fe51e68bb2e5feb608bc8;hpb=ba72554f3e576c1674d52ab16d8d2edff9398b71;p=mesa.git diff --git a/src/gallium/auxiliary/rtasm/rtasm_execmem.c b/src/gallium/auxiliary/rtasm/rtasm_execmem.c index a1c3de95fd5..fcb67a62de0 100644 --- a/src/gallium/auxiliary/rtasm/rtasm_execmem.c +++ b/src/gallium/auxiliary/rtasm/rtasm_execmem.c @@ -106,7 +106,7 @@ rtasm_exec_malloc(size_t size) debug_printf("rtasm_exec_malloc failed\n"); bail: - pipe_mutex_unlock(exec_mutex); + mtx_unlock(&exec_mutex); return addr; } @@ -124,7 +124,7 @@ rtasm_exec_free(void *addr) u_mmFreeMem(block); } - pipe_mutex_unlock(exec_mutex); + mtx_unlock(&exec_mutex); }