diff options
-rw-r--r-- | src/mem_pool.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mem_pool.c b/src/mem_pool.c index 5ab582352..553b48fe1 100644 --- a/src/mem_pool.c +++ b/src/mem_pool.c @@ -452,7 +452,7 @@ __mutex_spin (memory_pool_mutex_t * mutex) g_atomic_int_set (&mutex->spin, MUTEX_SPIN_COUNT); return 0; } - else if (kill (0, mutex->owner) == -1) { + else if (kill (mutex->owner, 0) == -1) { /* Owner process was not found, so release lock */ g_atomic_int_set (&mutex->spin, MUTEX_SPIN_COUNT); return 0; |