nxt_php_sapi.c (967:d693ed6d0209) nxt_php_sapi.c (977:4f9268f27b57)
1/*
2 * Copyright (C) Max Romanov
3 * Copyright (C) Valentin V. Bartenev
4 * Copyright (C) NGINX, Inc.
5 */
6
7#include "php.h"
8#include "SAPI.h"

--- 150 unchanged lines hidden (view full) ---

159};
160
161
162NXT_EXPORT nxt_app_module_t nxt_app_module = {
163 sizeof(compat),
164 compat,
165 nxt_string("php"),
166 PHP_VERSION,
1/*
2 * Copyright (C) Max Romanov
3 * Copyright (C) Valentin V. Bartenev
4 * Copyright (C) NGINX, Inc.
5 */
6
7#include "php.h"
8#include "SAPI.h"

--- 150 unchanged lines hidden (view full) ---

159};
160
161
162NXT_EXPORT nxt_app_module_t nxt_app_module = {
163 sizeof(compat),
164 compat,
165 nxt_string("php"),
166 PHP_VERSION,
167 NULL,
167 nxt_php_init,
168};
169
170
171static nxt_task_t *nxt_php_task;
172#ifdef ZTS
173static void ***tsrm_ls;
174#endif

--- 831 unchanged lines hidden ---
168 nxt_php_init,
169};
170
171
172static nxt_task_t *nxt_php_task;
173#ifdef ZTS
174static void ***tsrm_ls;
175#endif

--- 831 unchanged lines hidden ---