Removed usage of nxt_thread_context in loadable modules.

This change allows to use __thread class storage on MacOSX.
This commit is contained in:
Igor Sysoev
2018-06-28 18:31:13 +03:00
parent 51b37f0693
commit 50228b35b6

View File

@@ -175,6 +175,9 @@ NXT_EXPORT nxt_application_module_t nxt_app_module = {
}; };
static nxt_task_t *nxt_php_task;
nxt_inline u_char * nxt_inline u_char *
nxt_realpath(const void *c) nxt_realpath(const void *c)
{ {
@@ -195,6 +198,8 @@ nxt_php_init(nxt_task_t *task, nxt_common_app_conf_t *conf)
static nxt_str_t user_str = nxt_string("user"); static nxt_str_t user_str = nxt_string("user");
static nxt_str_t admin_str = nxt_string("admin"); static nxt_str_t admin_str = nxt_string("admin");
nxt_php_task = task;
c = &conf->u.php; c = &conf->u.php;
if (c->root == NULL) { if (c->root == NULL) {
@@ -866,5 +871,5 @@ static void
nxt_php_log_message(char *message) nxt_php_log_message(char *message)
#endif #endif
{ {
nxt_thread_log_error(NXT_LOG_NOTICE, "php message: %s", message); nxt_log(nxt_php_task, NXT_LOG_NOTICE, "php message: %s", message);
} }