1
0
mirror of https://github.com/php/php-src.git synced 2026-04-09 17:13:31 +02:00
Files
archived-php-src/main/SAPI.c

17 lines
198 B
C

#include "SAPI.h"
#include "TSRM.h"
#ifdef ZTS
int sapi_globals_id;
#endif
void sapi_startup()
{
#ifdef ZTS
sapi_globals_id = ts_allocate_id(sizeof(sapi_globals_struct), NULL, NULL);
#endif
}