Skip to main content

SYS_OPEN

Constant SYS_OPEN 

Source
pub const SYS_OPEN: usize = 403; // 403usize
Expand description

Open a file by path.

  • path_ptr: pointer to the null-terminated path string
  • path_len: length of the path
  • flags: open flags (O_RDONLY, O_WRONLY, O_RDWR, O_CREAT, etc.)

Returns a file descriptor on success.