comparison src/core/ngx_slab.h @ 4309:3f6040cd731e

Added shmtx interface to forcibly unlock mutexes. It is currently used from master process on abnormal worker termination to unlock accept mutex (unlocking of accept mutex was broken in 1.0.2). It is expected to be used in the future to unlock other mutexes as well. Shared mutex code was rewritten to make this possible in a safe way, i.e. with a check if lock was actually held by the exited process. We again use pid to lock mutex, and use separate atomic variable for a count of processes waiting in sem_wait().
author Maxim Dounin <mdounin@mdounin.ru>
date Wed, 23 Nov 2011 13:55:38 +0000
parents 5ff1ae0eada7
children d620f497c50f
comparison
equal deleted inserted replaced
4308:39982fa69482 4309:3f6040cd731e
20 uintptr_t prev; 20 uintptr_t prev;
21 }; 21 };
22 22
23 23
24 typedef struct { 24 typedef struct {
25 ngx_atomic_t lock; 25 ngx_shmtx_sh_t lock;
26 26
27 size_t min_size; 27 size_t min_size;
28 size_t min_shift; 28 size_t min_shift;
29 29
30 ngx_slab_page_t *pages; 30 ngx_slab_page_t *pages;