diff options
Diffstat (limited to 'src/alloc.c')
| -rw-r--r-- | src/alloc.c | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/src/alloc.c b/src/alloc.c index f3ca3e71a29..926d2706e8f 100644 --- a/src/alloc.c +++ b/src/alloc.c | |||
| @@ -127,21 +127,21 @@ extern __malloc_size_t __malloc_extra_blocks; | |||
| 127 | 127 | ||
| 128 | static pthread_mutex_t alloc_mutex; | 128 | static pthread_mutex_t alloc_mutex; |
| 129 | 129 | ||
| 130 | #define BLOCK_INPUT_ALLOC \ | 130 | #define BLOCK_INPUT_ALLOC \ |
| 131 | do \ | 131 | do \ |
| 132 | { \ | 132 | { \ |
| 133 | if (pthread_self () == main_thread) \ | 133 | if (pthread_equal (pthread_self (), main_thread)) \ |
| 134 | BLOCK_INPUT; \ | 134 | sigblock (sigmask (SIGIO)); \ |
| 135 | pthread_mutex_lock (&alloc_mutex); \ | 135 | pthread_mutex_lock (&alloc_mutex); \ |
| 136 | } \ | 136 | } \ |
| 137 | while (0) | 137 | while (0) |
| 138 | #define UNBLOCK_INPUT_ALLOC \ | 138 | #define UNBLOCK_INPUT_ALLOC \ |
| 139 | do \ | 139 | do \ |
| 140 | { \ | 140 | { \ |
| 141 | pthread_mutex_unlock (&alloc_mutex); \ | 141 | pthread_mutex_unlock (&alloc_mutex); \ |
| 142 | if (pthread_self () == main_thread) \ | 142 | if (pthread_equal (pthread_self (), main_thread)) \ |
| 143 | UNBLOCK_INPUT; \ | 143 | sigunblock (sigmask (SIGIO)); \ |
| 144 | } \ | 144 | } \ |
| 145 | while (0) | 145 | while (0) |
| 146 | 146 | ||
| 147 | #else /* SYSTEM_MALLOC || not HAVE_GTK_AND_PTHREAD */ | 147 | #else /* SYSTEM_MALLOC || not HAVE_GTK_AND_PTHREAD */ |