27 lines
562 B
Text
27 lines
562 B
Text
~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
~ ~~ OS-specific constants for FreeBSD ~~
|
|
~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
: elf-osabi 9 ~ : -1 FreeBSD ABI
|
|
;
|
|
|
|
~ Syscall numbers for FreeBSD
|
|
: SYS_exit 1 ;
|
|
: SYS_read 3 ;
|
|
: SYS_write 4 ;
|
|
: SYS_open 5 ;
|
|
: SYS_close 6 ;
|
|
: SYS_mmap 477 ;
|
|
|
|
~ Memory protection flags for FreeBSD
|
|
: PROT_READ 1 ;
|
|
: PROT_WRITE 2 ;
|
|
: PROT_EXEC 4 ;
|
|
|
|
~ mmap(2) flags
|
|
: MAP_PRIVATE 2 ;
|
|
: MAP_ANONYMOUS 0x1000 ;
|
|
|
|
~ errno constants. Evocation follows the Linux kernel API of returning the
|
|
~ error values as negated.
|
|
: -EINTR -4 ;
|