mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 11:37:35 +00:00
7166679620
- Fix a regression with the previous change that broke redbean - Add chroot(), resource limit, seccomp, and other stuff to redbean - Write lots and lots of documentation - Iron out more system call issues
15 lines
330 B
C
15 lines
330 B
C
#ifndef COSMOPOLITAN_TOOL_BUILD_RUNIT_H_
|
|
#define COSMOPOLITAN_TOOL_BUILD_RUNIT_H_
|
|
|
|
#define RUNITD_PORT 31337
|
|
#define RUNITD_MAGIC 0xFEEDABEEu
|
|
#define RUNITD_TIMEOUT_MS (1000 * 60 * 60)
|
|
|
|
enum RunitCommand {
|
|
kRunitExecute,
|
|
kRunitStdout,
|
|
kRunitStderr,
|
|
kRunitExit,
|
|
};
|
|
|
|
#endif /* COSMOPOLITAN_TOOL_BUILD_RUNIT_H_ */
|