mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-01 03:53:33 +00:00
47b3274665
- Add rusage to redbean Lua API - Add more redbean documentation - Add pledge() to redbean Lua API - Polyfill OpenBSD pledge() for Linux - Increase PATH_MAX limit to 1024 characters - Untrack sibling processes after fork() on Windows
22 lines
633 B
C
22 lines
633 B
C
#ifndef COSMOPOLITAN_LIBC_SYSV_CONSTS_LIMITS_H_
|
|
#define COSMOPOLITAN_LIBC_SYSV_CONSTS_LIMITS_H_
|
|
#include "libc/runtime/symbolic.h"
|
|
#if !(__ASSEMBLER__ + __LINKER__ + 0)
|
|
COSMOPOLITAN_C_START_
|
|
|
|
extern const int PIPE_BUF;
|
|
extern const int _ARG_MAX;
|
|
extern const int _NAME_MAX;
|
|
extern const int _PATH_MAX;
|
|
extern const int _NSIG;
|
|
|
|
COSMOPOLITAN_C_END_
|
|
#endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */
|
|
|
|
#define PIPE_BUF SYMBOLIC(PIPE_BUF)
|
|
#define _ARG_MAX SYMBOLIC(_ARG_MAX)
|
|
#define _NAME_MAX SYMBOLIC(_NAME_MAX)
|
|
#define _PATH_MAX SYMBOLIC(_PATH_MAX)
|
|
#define _NSIG SYMBOLIC(_NSIG)
|
|
|
|
#endif /* COSMOPOLITAN_LIBC_SYSV_CONSTS_LIMITS_H_ */
|