Searched defs:ap_scoreboard_shm (Results 1 - 1 of 1) sorted by relevance

/httpd/server/
H A Dscoreboard.c91 apr_shm_t *ap_scoreboard_shm = NULL; variable
127 apr_shm_destroy(ap_scoreboard_shm);
187 rv = apr_shm_create(&ap_scoreboard_shm, scoreboard_size, fname, pool);
233 rv = apr_shm_create(&ap_scoreboard_shm, scoreboard_size, NULL,
264 if (apr_shm_size_get(ap_scoreboard_shm) < scoreboard_size) {
267 apr_shm_detach(ap_scoreboard_shm);
268 ap_scoreboard_shm = NULL;
273 *shm = ap_scoreboard_shm;
322 if (rv || !(sb_shared = apr_shm_baseaddr_get(ap_scoreboard_shm))) {

Completed in 12 milliseconds