| ... | @@ -3852,16 +3852,3 @@ pub extern "c" fn proc_listchildpids(ppid: pid_t, buffer: ?*anyopaque, buffersiz | ... | @@ -3852,16 +3852,3 @@ pub extern "c" fn proc_listchildpids(ppid: pid_t, buffer: ?*anyopaque, buffersiz |
| 3852 | pub extern "c" fn proc_pidinfo(pid: c_int, flavor: c_int, arg: u64, buffer: ?*anyopaque, buffersize: c_int) c_int; | 3852 | pub extern "c" fn proc_pidinfo(pid: c_int, flavor: c_int, arg: u64, buffer: ?*anyopaque, buffersize: c_int) c_int; |
| 3853 | pub extern "c" fn proc_name(pid: c_int, buffer: ?*anyopaque, buffersize: u32) c_int; | 3853 | pub extern "c" fn proc_name(pid: c_int, buffer: ?*anyopaque, buffersize: u32) c_int; |
| 3854 | pub extern "c" fn proc_pidpath(pid: c_int, buffer: ?*anyopaque, buffersize: u32) c_int; | 3854 | pub extern "c" fn proc_pidpath(pid: c_int, buffer: ?*anyopaque, buffersize: u32) c_int; |
| 3855 | | | |
| 3856 | pub const MIN = struct { | | |
| 3857 | pub const INCORE = 0x1; | | |
| 3858 | pub const REFERENCED = 0x2; | | |
| 3859 | pub const MODIFIED = 0x4; | | |
| 3860 | pub const REFERENCED_OTHER = 0x8; | | |
| 3861 | pub const MODIFIED_OTHER = 0x10; | | |
| 3862 | pub const PAGED_OUT = 0x20; | | |
| 3863 | pub const COPIED = 0x40; | | |
| 3864 | pub const ANONYMOUS = 0x80; | | |
| 3865 | }; | | |
| 3866 | | | |
| 3867 | pub extern "c" fn mincore(addr: *align(std.mem.page_size) const anyopaque, length: usize, vec: [*]u8) c_int; | | |