1
0
mirror of https://github.com/apache/httpd.git synced 2025-08-07 04:02:58 +03:00

use the ap_mutex functions to create the mutex instead of the apr_mutex ones.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1369758 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Daniel Gruno
2012-08-06 09:26:10 +00:00
parent ce4b577ce1
commit 864e336ee3
2 changed files with 15 additions and 4 deletions

View File

@@ -129,6 +129,7 @@ static void ap_lua_release_state(lua_State* L, ap_lua_vm_spec* spec, request_rec
#if APR_HAS_THREADS
extern void ap_lua_init_mutex(apr_pool_t *pool, server_rec *s);
extern int ap_lua_register_mutex(apr_pool_t *p, apr_pool_t *plog, apr_pool_t *ptemp);
#endif
static ap_lua_vm_spec *create_vm_spec(apr_pool_t **lifecycle_pool,
@@ -1598,6 +1599,7 @@ static void lua_register_hooks(apr_pool_t *p)
APR_HOOK_REALLY_FIRST);
ap_hook_handler(lua_map_handler, NULL, NULL, AP_LUA_HOOK_FIRST);
#if APR_HAS_THREADS
ap_hook_pre_config(ap_lua_register_mutex, NULL, NULL, APR_HOOK_MIDDLE);
ap_hook_child_init(ap_lua_init_mutex, NULL, NULL, APR_HOOK_MIDDLE);
#endif
/* providers */