diff options
Diffstat (limited to 'src/alloc.c')
| -rw-r--r-- | src/alloc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/alloc.c b/src/alloc.c index f24d77f0519..5cf22eb62e7 100644 --- a/src/alloc.c +++ b/src/alloc.c | |||
| @@ -131,7 +131,7 @@ static pthread_mutex_t alloc_mutex; | |||
| 131 | do \ | 131 | do \ |
| 132 | { \ | 132 | { \ |
| 133 | if (pthread_equal (pthread_self (), main_thread)) \ | 133 | if (pthread_equal (pthread_self (), main_thread)) \ |
| 134 | sigblock (sigmask (SIGIO)); \ | 134 | BLOCK_INPUT; \ |
| 135 | pthread_mutex_lock (&alloc_mutex); \ | 135 | pthread_mutex_lock (&alloc_mutex); \ |
| 136 | } \ | 136 | } \ |
| 137 | while (0) | 137 | while (0) |
| @@ -140,7 +140,7 @@ static pthread_mutex_t alloc_mutex; | |||
| 140 | { \ | 140 | { \ |
| 141 | pthread_mutex_unlock (&alloc_mutex); \ | 141 | pthread_mutex_unlock (&alloc_mutex); \ |
| 142 | if (pthread_equal (pthread_self (), main_thread)) \ | 142 | if (pthread_equal (pthread_self (), main_thread)) \ |
| 143 | sigunblock (sigmask (SIGIO)); \ | 143 | UNBLOCK_INPUT; \ |
| 144 | } \ | 144 | } \ |
| 145 | while (0) | 145 | while (0) |
| 146 | 146 | ||