mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 03:27:39 +00:00
0b3c81dd4e
This change makes fork() go nearly as fast as sys_fork() on UNIX. As for Windows this change shaves about 4-5ms off fork() + wait() latency. This is accomplished by using WriteProcessMemory() from the parent process to setup the address space of a suspended process; it is better than a pipe |
||
---|---|---|
.. | ||
BUILD.mk | ||
daylight.c | ||
difftime.c | ||
LICENSE | ||
localtime.c | ||
lock.h | ||
private.h | ||
README.cosmo | ||
timezone.c | ||
tzdir.h | ||
tzfile.h | ||
tzname.c | ||
windows.py |
DESCRIPTION tz is a library for handling time zones LICENSE See LICENSE file ORIGIN git@github.com:eggert/tz.git a75a6251d30b28a7badc1763296205adf67a5081 Paul Eggert <eggert@cs.ucla.edu> BUILD PROCESS make -j8 install BACKWARD= DESTDIR=stage REDO=posix_only LOCAL CHANGES - Add aliases for legacy Cosmo timezone names. - Add yoinks for embedding time zones in binary. - Make localtime() posix thread cancelation safe. - Improve readabiilty with "localtime_" prefixes. - Automate the TZ environment variable on Windows.