mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 11:37:35 +00:00
b5cb71ab84
Condition variables, barriers, and r/w locks now work very well.
18 lines
469 B
C
18 lines
469 B
C
#ifndef COSMOPOLITAN_LIBC_SYSV_CONSTS_SS_H_
|
|
#define COSMOPOLITAN_LIBC_SYSV_CONSTS_SS_H_
|
|
#if !(__ASSEMBLER__ + __LINKER__ + 0)
|
|
COSMOPOLITAN_C_START_
|
|
|
|
extern const size_t SIGSTKSZ;
|
|
extern const size_t MINSIGSTKSZ;
|
|
extern const int SS_DISABLE;
|
|
|
|
COSMOPOLITAN_C_END_
|
|
#endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */
|
|
|
|
#define SIGSTKSZ FRAMESIZE
|
|
#define MINSIGSTKSZ 32768
|
|
#define SS_ONSTACK 1
|
|
#define SS_DISABLE SS_DISABLE
|
|
|
|
#endif /* COSMOPOLITAN_LIBC_SYSV_CONSTS_SS_H_ */
|