mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 11:37:35 +00:00
3b4dbc9fdd
This change deletes mkfifo() so that GNU Make on Windows will work in parallel mode using its pipe-based implementation. There's an example called greenbean2 now, which shows how to build a scalable web server for Windows with 10k+ threads. The accuracy of clock_nanosleep is now significantly improved on Linux.
16 lines
463 B
C
16 lines
463 B
C
#ifndef NSYNC_ATOMIC_H_
|
|
#define NSYNC_ATOMIC_H_
|
|
#include "libc/atomic.h"
|
|
#if !(__ASSEMBLER__ + __LINKER__ + 0)
|
|
COSMOPOLITAN_C_START_
|
|
|
|
#define nsync_atomic_uint32_ atomic_uint
|
|
|
|
#define NSYNC_ATOMIC_UINT32_INIT_ 0
|
|
#define NSYNC_ATOMIC_UINT32_LOAD_(p) (*(p))
|
|
#define NSYNC_ATOMIC_UINT32_STORE_(p, v) (*(p) = (v))
|
|
#define NSYNC_ATOMIC_UINT32_PTR_(p) (p)
|
|
|
|
COSMOPOLITAN_C_END_
|
|
#endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */
|
|
#endif /* NSYNC_ATOMIC_H_ */
|