int kopen(
const char *path,
int flags,
mode_t mode)
KOPEN_RDONLY - Open file for only reading KOPEN_WRONLY - Open file for only writing KOPEN_RDWR - Open file for both reading & writing
KOPEN_NONBLOCK - Whether to block when reading and writing to the file. KOPEN_APPEND - Append to the file (writing). KOPEN_TRUNC - Truncate the file for writing. KOPEN_EXCL - Error if file exists KOPEN_CREAT - the file exists, this flag has no effect. Otherwise, the file is created, and the owner ID of the file is set to the effective user ID of the process.
none
"shm=1032"
If a file was desired then either
"/usr/tmp/vadd1235" "file=/usr/tmp/vadd1235"
will work.
none
none
$BOOTSTRAP/objects/library/kutils/src/ktransport.c