blob: d04c051727e0fc32745273eb0cb1f89f10fc24eb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#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
}
|