Apache 1.3 API Documentation

Routine ap_create_mutex

Definition:

mutex *ap_create_mutex(char *name);
     

Usage example:

static mutex *alloc_mutex = NULL; 
alloc_mutex = ap_create_mutex(NULL);
     

Creates a mutex. Only actually does anything on multithreaded platforms.

Returns a mutex * in name.

See also:
ap_acquire_mutex, ap_destroy_mutex, ap_open_mutex, mutex

Previous: ap_create_environment Next: ap_create_per_dir_config

Table of Contents (Routines, Structures, Data Cells, Constants)