zig/std/c/linux.zig

28 lines
1.2 KiB
Zig
Raw Normal View History

2019-05-25 07:36:09 +08:00
const std = @import("../std.zig");
use std.c;
extern "c" fn __errno_location() *c_int;
pub const _errno = __errno_location;
2018-04-29 11:30:13 +08:00
2019-05-27 11:35:26 +08:00
pub extern "c" fn getrandom(buf_ptr: [*]u8, buf_len: usize, flags: c_uint) c_int;
pub extern "c" fn sched_getaffinity(pid: c_int, size: usize, set: *cpu_set_t) c_int;
pub extern "c" fn eventfd(initval: c_uint, flags: c_uint) c_int;
pub extern "c" fn epoll_ctl(epfd: fd_t, op: c_uint, fd: fd_t, event: *epoll_event) c_int;
pub extern "c" fn epoll_create1(flags: c_uint) c_int;
pub extern "c" fn epoll_wait(epfd: fd_t, events: [*]epoll_event, maxevents: c_uint, timeout: c_int) c_int;
pub extern "c" fn epoll_pwait(
epfd: fd_t,
events: [*]epoll_event,
maxevents: c_int,
timeout: c_int,
sigmask: *const sigset_t,
) c_int;
pub extern "c" fn inotify_init1(flags: c_uint) c_int;
pub extern "c" fn inotify_add_watch(fd: fd_t, pathname: [*]const u8, mask: u32) c_int;
2018-08-25 15:07:37 +08:00
/// See std.elf for constants for this
2019-05-27 11:35:26 +08:00
pub extern "c" fn getauxval(__type: c_ulong) c_ulong;
2019-04-25 02:53:46 +08:00
2019-05-25 07:36:09 +08:00
pub const dl_iterate_phdr_callback = extern fn (info: *dl_phdr_info, size: usize, data: ?*c_void) c_int;
2019-05-27 11:35:26 +08:00
pub extern "c" fn dl_iterate_phdr(callback: dl_iterate_phdr_callback, data: ?*c_void) c_int;