mirror of
https://github.com/apache/httpd.git
synced 2025-08-06 11:06:17 +00:00
Save a few bytes of memory when registering Mutex
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1882228 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
@ -128,9 +128,9 @@ AP_DECLARE(apr_status_t) ap_parse_mutex(const char *arg, apr_pool_t *pool,
|
|||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
apr_int32_t options;
|
apr_int32_t options;
|
||||||
int set;
|
unsigned int set : 1;
|
||||||
int none;
|
unsigned int none : 1;
|
||||||
int omit_pid;
|
unsigned int omit_pid : 1;
|
||||||
apr_lockmech_e mech;
|
apr_lockmech_e mech;
|
||||||
const char *dir;
|
const char *dir;
|
||||||
} mutex_cfg_t;
|
} mutex_cfg_t;
|
||||||
|
Reference in New Issue
Block a user