mirror of
https://github.com/BoredDevNL/BoredOS.git
synced 2026-05-15 18:58:40 +00:00
Introduce process lifecycle and POSIX-like features: add parent_pid, pgid, exited/exit_status, signal state and handlers, waitpid/reap, and an exec-replace function. Refactor file descriptor handling to use fd_kind/fd_flags with reference-counted file refs and in-process pipes; implement open/read/write/close/seek/tell/size/dup/dup2/pipe/fcntl semantics and O_* flags. Add syscall handlers for exec, waitpid, kill/signal, sigaction, sigprocmask, sigpending, meminfo/ticks and map many SYSTEM_CMD_* constants; deliver signals from the syscall path. Cleanup/terminate logic updated to free resources correctly and initialize kernel/user processes with new state. Misc: minor syscall/table renames (wallpaper), helper utilities (process_close_fd_inner, process_init_signal_state) and paging/stack handling for exec.
27 lines
433 B
C
27 lines
433 B
C
#ifndef BOREDOS_LIBC_ERRNO_H
|
|
#define BOREDOS_LIBC_ERRNO_H
|
|
|
|
extern int errno;
|
|
|
|
#define EDOM 33
|
|
#define E2BIG 7
|
|
#define ERANGE 34
|
|
#define EINVAL 22
|
|
#define EISDIR 21
|
|
#define ENOENT 2
|
|
#define ENOMEM 12
|
|
#define EACCES 13
|
|
#define EBADF 9
|
|
#define EIO 5
|
|
#define EEXIST 17
|
|
#define EAGAIN 11
|
|
#define EINTR 4
|
|
#define ECHILD 10
|
|
#define ENOTSUP 95
|
|
#define EPIPE 32
|
|
#define ENOTDIR 20
|
|
#define EBUSY 16
|
|
#define ESPIPE 29
|
|
#define ENOSYS 38
|
|
|
|
#endif
|