Home
last modified time | relevance | path

Searched refs:HOST_AT_FDCWD (Results 1 – 2 of 2) sorted by relevance

/freebsd/stand/kboot/libkboot/
H A Dhost_syscalls.c92 return host_syscall(SYS_mkdirat, HOST_AT_FDCWD, (uintptr_t)path, mode); in host_mkdir()
117 return host_syscall(SYS_openat, HOST_AT_FDCWD, (uintptr_t)path, flags, mode); in host_open()
152 return host_syscall(SYS_newfstatat, HOST_AT_FDCWD, (uintptr_t)path, (uintptr_t)sb, 0); in host_stat()
158 return host_syscall(SYS_symlinkat, HOST_AT_FDCWD, path1, path2); in host_symlink()
/freebsd/stand/kboot/include/
H A Dhost_syscall.h74 #define HOST_AT_FDCWD -100 /* Relative to current directory */ macro