History log of /PHP-7.4/main/reentrancy.c (Results 76 – 81 of 81)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
# 3d092da6 26-Nov-1999 Sascha Schumann

unposixfy calls to TSRM


# 1f9a4966 26-Nov-1999 Sascha Schumann

Define macros only, if one of the locking _r functions is used


# ec18b99d 26-Nov-1999 Sascha Schumann

Fix typo (shutdown -> startup)


# 524f0b1b 26-Nov-1999 Sascha Schumann

- move strtok_r into reentrancy.c
- add rand_r()


# a6469161 26-Nov-1999 Sascha Schumann

Add/update copyright headers


# 35b30a8d 26-Nov-1999 Sascha Schumann

Add reentrant versions of ctime, localtime, gmtime, asctime.

These cannot be implemented platform-independent, so we fall back to the native
non-reentrant versions, but lock during each

Add reentrant versions of ctime, localtime, gmtime, asctime.

These cannot be implemented platform-independent, so we fall back to the native
non-reentrant versions, but lock during each access (only if ZTS is used).

To initialize/destroy the used data structures, you need to call
reentrancy_startup() before sapi_startup(), and reentrancy_shutdown() after
sapi_shutdown().

show more ...


1234