mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-01 03:53:33 +00:00
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 STACKSIZE
|
|
#define MINSIGSTKSZ 32768
|
|
#define SS_ONSTACK 1
|
|
#define SS_DISABLE SS_DISABLE
|
|
|
|
#endif /* COSMOPOLITAN_LIBC_SYSV_CONSTS_SS_H_ */
|