diff options
author | José Fonseca <[email protected]> | 2010-02-02 15:18:01 +0000 |
---|---|---|
committer | José Fonseca <[email protected]> | 2010-02-02 15:18:01 +0000 |
commit | 2aaca1df9df6980ec88180c8866c8987b31db91a (patch) | |
tree | a0f18292d98052d3ff3d77ed06cd8a6f5999cfdd /src/gallium/auxiliary/rtasm | |
parent | 38f6f23fcf37247fd709d1c612d08bfa9b124e69 (diff) |
gallium: Move p_thread.h and p_atomic.h out of gallium interfaces.
Into os/os_thread.h and util/u_atomic.h respectively.
Diffstat (limited to 'src/gallium/auxiliary/rtasm')
-rw-r--r-- | src/gallium/auxiliary/rtasm/rtasm_execmem.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/auxiliary/rtasm/rtasm_execmem.c b/src/gallium/auxiliary/rtasm/rtasm_execmem.c index ffed768f979..65d5ce795be 100644 --- a/src/gallium/auxiliary/rtasm/rtasm_execmem.c +++ b/src/gallium/auxiliary/rtasm/rtasm_execmem.c @@ -32,7 +32,7 @@ #include "pipe/p_compiler.h" #include "util/u_debug.h" -#include "pipe/p_thread.h" +#include "os/os_thread.h" #include "util/u_memory.h" #include "rtasm_execmem.h" @@ -58,7 +58,7 @@ #include <unistd.h> #include <sys/mman.h> -#include "pipe/p_thread.h" +#include "os/os_thread.h" #include "util/u_mm.h" #define EXEC_HEAP_SIZE (10*1024*1024) |