diff options
author | Baldo Davide <[email protected]> | 2012-05-05 04:50:19 +0100 |
---|---|---|
committer | José Fonseca <[email protected]> | 2012-05-05 04:51:32 +0100 |
commit | 0ad0bc5af5679c1ea669a768449bec3fd67fdd74 (patch) | |
tree | ba6dd4ce13d8b902ea5f091ce72f908f0c821448 /src/gallium/auxiliary/os | |
parent | 3cd7bee48f7caf7850ea64d40f43875d4c975507 (diff) |
auxiliary/os: Add missing signal.h include.
The signal.h include was missed in the commit
bc16c73407d11bb6702cf7de9925bfaeb80a5272 which leads to broken
compilations under Linux.
Signed-off-by: José Fonseca <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary/os')
-rw-r--r-- | src/gallium/auxiliary/os/os_thread.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/os/os_thread.h b/src/gallium/auxiliary/os/os_thread.h index 3e1c273027b..3773be945dd 100644 --- a/src/gallium/auxiliary/os/os_thread.h +++ b/src/gallium/auxiliary/os/os_thread.h @@ -44,6 +44,7 @@ #include <pthread.h> /* POSIX threads headers */ #include <stdio.h> /* for perror() */ +#include <signal.h> /* pipe_thread |