Rizin
unix-like reverse engineering framework and cli tools
sflib.h
Go to the documentation of this file.
1 /*
2  * sflib.h --- SFLib syscall library for Linux/ARM
3  * see http://www.secdev.org/projects/shellforge.html for more informations
4  *
5  * Copyright (C) 2004 Philippe Biondi <phil@secdev.org>
6  *
7  * This program is free software; you can redistribute it and/or modify it
8  * under the terms of the GNU Lesser General Public License as published by
9  * the Free Software Foundation.
10  *
11  * This program is distributed in the hope that it will be useful, but
12  * WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14  * Lesser General Public License for more details.
15  */
16 
17 
18 /*
19  * Automatically generated by gensflib.py
20  * Mon Mar 21 13:23:31 2022
21  */
22 
23 #ifndef SFLIB_H
24 #define SFLIB_H
25 
26 
27 #include "sfsysnr.h"
28 #include "sfsyscall.h"
29 #include "../common/sftypes.h"
30 
31 static inline _sfsyscall1(int, exit, int, status)
32 static inline _sfsyscall0( pid_t, fork )
33 static inline _sfsyscall3( ssize_t, read, int, fd, void *, buf, size_t, count )
34 static inline _sfsyscall3( ssize_t, write, int, fd, const void *, buf, size_t, count )
35 static inline _sfsyscall3( int, open, const char *, pathname, int, flags, mode_t, mode )
36 static inline _sfsyscall1( int, close, int, fd )
37 static inline _sfsyscall2( int, creat, const char *, pathname, mode_t, mode )
38 static inline _sfsyscall2( int, link, const char *, oldpath, const char *, newpath )
39 static inline _sfsyscall1( int, unlink, const char *, pathname )
40 static inline _sfsyscall3(int, execve, char *, s, char **, argv, char **,envp)
41 static inline _sfsyscall1( int, chdir, const char *, path )
43 static inline _sfsyscall3( int, mknod, const char *, pathname, mode_t, mode, dev_t, dev )
44 static inline _sfsyscall2( int, chmod, const char *, path, mode_t, mode )
45 static inline _sfsyscall3( int, lchown, const char *, path, uid_t, owner, gid_t, group )
46 // break
47 static inline _sfsyscall3( off_t, lseek, int, fildes, off_t, offset, int, whence )
48 static inline _sfsyscall0( pid_t, getpid )
49 // mount
50 static inline _sfsyscall1( int, umount, const char *, dir )
51 // setuid
52 static inline _sfsyscall0( uid_t, getuid )
53 static inline _sfsyscall1( int, stime, time_t *, t )
54 static inline _sfsyscall4(long, ptrace, int, request, pid_t, pid, void *,addr, void *,data)
55 static inline _sfsyscall1( unsigned int, alarm, unsigned int, seconds )
56 static inline _sfsyscall0( int, pause )
57 static inline _sfsyscall2( int, utime, const char *, filename, struct utimbuf *, buf )
58 // stty
59 // gtty
60 static inline _sfsyscall2( int, access, const char *, pathname, int, mode )
61 static inline _sfsyscall1( int, nice, int, inc )
62 // ftime
63 static inline _sfsyscall0( int, sync )
64 static inline _sfsyscall2( int, kill, pid_t, pid, int, sig )
65 static inline _sfsyscall2( int, rename, const char *, oldpath, const char *, newpath )
66 static inline _sfsyscall2( int, mkdir, const char *, pathname, mode_t, mode )
67 static inline _sfsyscall1( int, rmdir, const char *, pathname )
68 static inline _sfsyscall1( int, dup, int, oldfd )
69 static inline _sfsyscall1( int, pipe, unsigned long *, filedes)
70 static inline _sfsyscall1( clock_t, times, struct tms *, buf )
71 // prof
72 static inline _sfsyscall1( int, brk, void *, end_data_segment )
73 // setgid
74 static inline _sfsyscall0( gid_t, getgid )
76 static inline _sfsyscall0( uid_t, geteuid )
77 static inline _sfsyscall0( gid_t, getegid )
78 static inline _sfsyscall1( int, acct, const char *, filename )
79 // umount2
80 // lock
81 static inline _sfsyscall4(int, ioctl, int,d, int,request, char *,argp, int,len)
82 static inline _sfsyscall3( int, fcntl, int, fd, int, cmd, long, arg )
83 // mpx
84 static inline _sfsyscall2( int, setpgid, pid_t, pid, pid_t, pgid )
85 // ulimit
87 static inline _sfsyscall1( int, chroot, const char *, path )
88 static inline _sfsyscall2( int, ustat, dev_t, dev, struct ustat *, ubuf )
89 static inline _sfsyscall2( int, dup2, int, oldfd, int, newfd )
90 static inline _sfsyscall0( pid_t, getppid )
91 static inline _sfsyscall0( pid_t, getpgrp )
92 static inline _sfsyscall0( pid_t, setsid )
93 // sigaction
94 // sgetmask
95 // ssetmask
97 static inline _sfsyscall2( int, setregid, gid_t, rgid, gid_t, egid )
99 static inline _sfsyscall1( int, sigpending, sigset_t *, set )
100 static inline _sfsyscall2( int, sethostname, const char *, name, size_t, len )
101 // setrlimit
102 // getrlimit
103 // getrusage
104 static inline _sfsyscall2( int, gettimeofday, struct timeval *, tv, struct timezone *, tz )
105 // settimeofday
106 // getgroups
107 static inline _sfsyscall2( int, setgroups, size_t, size, const gid_t *, list )
108 static inline _sfsyscall5( int, select, int, n, fd_set *, readfds, fd_set *, writefds, fd_set *, exceptfds, struct timeval *, timeout)
109 static inline _sfsyscall2( int, symlink, const char *, oldpath, const char *, newpath )
110 static inline _sfsyscall3( int, readlink, const char *, path, char *, buf, size_t, bufsiz )
111 static inline _sfsyscall1( int, uselib, const char *, library )
112 static inline _sfsyscall2( int, swapon, const char *, path, int, swapflags )
113 // reboot
114 static inline _sfsyscall3( int, readdir, unsigned int, fd, struct dirent *, dirp, unsigned int, count )
115 static inline _sfsyscall6(void *,mmap, void *,start, size_t,length, int,prot , int,flags, int,fd, off_t,offset)
116 static inline _sfsyscall2( int, munmap, void *, start, size_t, length )
117 static inline _sfsyscall2( int, truncate, const char *, path, off_t, length )
118 static inline _sfsyscall2( int, ftruncate, int, fd, off_t, length )
119 static inline _sfsyscall2( int, fchmod, int, fildes, mode_t, mode )
120 static inline _sfsyscall3( int, fchown, int, fd, uid_t, owner, gid_t, group )
121 static inline _sfsyscall2( int, getpriority, int, which, int, who )
122 static inline _sfsyscall3( int, setpriority, int, which, int, who, int, prio )
123 // profil
124 static inline _sfsyscall2( int, statfs, const char *, path, struct statfs *, buf )
125 static inline _sfsyscall2( int, fstatfs, int, fd, struct statfs *, buf )
126 static inline _sfsyscall3( int, ioperm, unsigned long, from, unsigned long, num, int, turn_on )
127 static inline _sfsyscall2( int, socketcall, int, call, unsigned long *,args);
128 static inline _sfsyscall3( int, syslog, int, type, char *, bufp, int, len )
129 // setitimer
130 // getitimer
131 static inline _sfsyscall2( int, stat, const char *, file_name, struct stat *, buf )
132 static inline _sfsyscall2( int, lstat, const char *, file_name, struct stat *, buf )
133 static inline _sfsyscall2( int, fstat, int, filedes, struct stat *, buf )
134 static inline _sfsyscall0( int, vhangup )
135 static inline _sfsyscall0( int, idle )
136 // syscall
137 static inline _sfsyscall4(pid_t, wait4, pid_t, pid, int *, status, int, options, struct rusage *, rusage)
138 static inline _sfsyscall1( int, swapoff, const char *, path )
139 static inline _sfsyscall1( int, sysinfo, struct sysinfo *, info )
140 // ipc
141 static inline _sfsyscall1( int, fsync, int, fd )
142 static inline _sfsyscall1( int, sigreturn, unsigned long, __unused )
143 // clone
144 static inline _sfsyscall2( int, setdomainname, const char *, name, size_t, len )
145 static inline _sfsyscall1( int, uname, struct utsname *, buf )
146 // modify_ldt
147 // adjtimex
148 static inline _sfsyscall3( int, mprotect, const void *, addr, size_t, len, int, prot )
149 // sigprocmask
150 static inline _sfsyscall2( caddr_t, create_module, const char *, name, size_t, size )
151 static inline _sfsyscall2( int, init_module, const char *, name, struct module *, image )
152 static inline _sfsyscall1( int, delete_module, const char *, name )
153 static inline _sfsyscall1( int, get_kernel_syms, struct kernel_sym *, table )
154 // quotactl
156 // fchdir
157 // bdflush
158 static inline _sfsyscall3( int, sysfs, int, option, unsigned int, fs_index, char *, buf )
159 static inline _sfsyscall1( int, personality, unsigned long, persona )
160 // afs_syscall
161 static inline _sfsyscall1( int, setfsuid, uid_t, fsuid )
162 static inline _sfsyscall1( int, setfsgid, uid_t, fsgid )
163 static inline _sfsyscall3( int, getdents, unsigned int, fd, struct dirent *, dirp, unsigned int, count )
164 // flock
165 static inline _sfsyscall3( int, msync, const void *, start, size_t, length, int, flags )
166 static inline _sfsyscall3( int, readv, int, fd, const struct iovec *, vector, int, count )
167 static inline _sfsyscall3( int, writev, int, fd, const struct iovec *, vector, int, count )
169 static inline _sfsyscall1( int, fdatasync, int, fd )
170 static inline _sfsyscall2( int, mlock, const void *, addr, size_t, len )
171 static inline _sfsyscall2( int, munlock, const void *, addr, size_t, len )
172 static inline _sfsyscall1( int, mlockall, int, flags )
173 static inline _sfsyscall0( int, munlockall )
176 // sched_setscheduler
178 static inline _sfsyscall0( int, sched_yield )
179 static inline _sfsyscall1( int, sched_get_priority_max, int, policy )
180 static inline _sfsyscall1( int, sched_get_priority_min, int, policy )
182 static inline _sfsyscall2( int, nanosleep, const struct timespec *, req, struct timespec *, rem )
183 // mremap
185 static inline _sfsyscall3( int, getresuid, uid_t *, ruid, uid_t *, euid, uid_t *, suid )
186 static inline _sfsyscall2( int, vm86, unsigned long, fn, struct vm86plus_struct *, v86 )
187 // query_module
188 static inline _sfsyscall3( int, poll, struct pollfd *, ufds, unsigned int, nfds, int, timeout )
189 // nfsservctl
190 // setresgid
191 // getresgid
192 // prctl
193 // rt_sigreturn
194 // rt_sigaction
195 // rt_sigprocmask
196 // rt_sigpending
197 // rt_sigtimedwait
198 // rt_sigqueueinfo
199 // rt_sigsuspend
200 static inline _sfsyscall4( ssize_t, pread, int, fd, void *, buf, size_t, count, off_t, offset )
201 // pwrite
202 static inline _sfsyscall3( int, chown, const char *, path, uid_t, owner, gid_t, group )
203 // getcwd
205 //static inline _sfsyscall2( int, capset, cap_user_header_t, header, const cap_user_data_t, data )
206 // sigaltstack
207 // sendfile
208 static inline _sfsyscall0( pid_t, vfork )
209 // ugetrlimit
210 // mmap2
211 // truncate64
212 // ftruncate64
213 // stat64
214 // lstat64
215 // fstat64
216 // lchown32
217 // getuid32
218 // getgid32
219 // geteuid32
220 // getegid32
221 // setreuid32
222 // setregid32
223 // getgroups32
224 // setgroups32
225 // fchown32
226 // setresuid32
227 // getresuid32
228 // setresgid32
229 // getresgid32
230 // chown32
231 // setuid32
232 // setgid32
233 // setfsuid32
234 // setfsgid32
235 // getdents64
236 // pivot_root
237 // mincore
238 // madvise
239 // fcntl64
240 // security
241 // gettid
242 // readahead
243 // setxattr
244 // lsetxattr
245 // fsetxattr
246 // getxattr
247 // lgetxattr
248 // fgetxattr
249 // listxattr
250 // llistxattr
251 // flistxattr
252 // removexattr
253 // lremovexattr
254 // fremovexattr
255 // tkill
256 // sendfile64
257 // futex
258 // sched_setaffinity
259 // sched_getaffinity
260 // io_setup
261 // io_destroy
262 // io_getevents
263 // io_submit
264 // io_cancel
265 // exit_group
266 // lookup_dcookie
267 // epoll_create
268 // epoll_ctl
269 // epoll_wait
270 // remap_file_pages
271 
272 #endif /* SFLIB_H */
#define mask()
int call(int a, int b)
Definition: bcj_test.c:25
RzBinInfo * info(RzBinFile *bf)
Definition: bin_ne.c:86
static static fork const void static count static fd const char const char static newpath const char static path const char path
Definition: sflib.h:35
static static sync static getppid static getegid const char static filename char static len const char char static bufsiz static mask static vfork const void static prot static getpgrp const char static swapflags static arg static fd static protocol static who struct sockaddr static addrlen static backlog struct timeval struct timezone static tz const struct iovec static count static mode const void const struct sockaddr static tolen const char static pathname void static offset struct stat static buf void long static basep static whence static length munlock
Definition: sflib.h:113
static static sync static getppid static getegid const char static filename char static len const char char static bufsiz static mask static vfork const void static prot static getpgrp const char static swapflags static arg static fd static protocol static who struct sockaddr static addrlen static backlog struct timeval struct timezone static tz const struct iovec static count static mode const void const struct sockaddr static tolen const char static pathname void static offset struct stat static buf void long static basep static whence static length const void static len static semflg const void static shmflg const struct timespec struct timespec static rem const char static group const void static flags struct statfs static buf mlockall
Definition: sflib.h:145
static static fork const void static count static fd const char const char static newpath const char static path const char static mode static getpid static gid static geteuid void len
Definition: sflib.h:44
static static fork const void static count static fd const char oldpath
Definition: sflib.h:33
static static sync static getppid static getegid const char static filename char static len const char char static bufsiz static mask static vfork const void static prot static getpgrp const char static swapflags static arg static fd static protocol static who struct sockaddr static addrlen static backlog struct timeval struct timezone static tz const struct iovec static count static mode const void const struct sockaddr static tolen const char static pathname void static offset struct stat static buf void long static basep static whence ftruncate
Definition: sflib.h:113
static static sync static getppid static getegid const char static filename char static len const char char static bufsiz static mask static vfork const void static prot static getpgrp const char static swapflags static arg static fd static protocol static who struct sockaddr static addrlen static backlog struct timeval tv
Definition: sflib.h:79
static static fork const void static count static fd const char const char static newpath const char static path const char static mode static getpid static gid static geteuid void flags
Definition: sflib.h:44
static static sync static getppid static getegid const char static filename char static len const char char static bufsiz static mask static vfork const void static prot static getpgrp const char static swapflags static arg static fd static protocol static who struct sockaddr static addrlen static backlog struct timeval struct timezone static tz const struct iovec static count fchmod
Definition: sflib.h:84
static static sync static getppid static getegid const char static filename char static len const char char static bufsiz static mask static vfork const void static prot static getpgrp const char static swapflags static arg static fd static protocol static who struct sockaddr static addrlen static backlog struct timeval struct timezone static tz const struct iovec static count fildes
Definition: sflib.h:84
static static sync static getppid static getegid const char static filename char static len const char char static bufsiz static mask static vfork const void static prot static getpgrp const char static swapflags static arg static fd static protocol static who struct sockaddr static addrlen static backlog struct timeval struct timezone static tz const struct iovec static count static mode const void const struct sockaddr static tolen const char static pathname void static offset struct stat static buf void long static basep static whence static length const void static len static semflg const void static shmflg const struct timespec req
Definition: sflib.h:128
static static sync static getppid static getegid const char static filename char static len const char char static bufsiz static mask static vfork const void static prot static getpgrp const char static swapflags static arg static fd static protocol static who struct sockaddr static addrlen static backlog struct timeval struct timezone static tz const struct iovec static count static mode const void const struct sockaddr static tolen const char static pathname void static offset struct stat static buf void long static basep static whence static length const void static len static semflg const void static shmflg nanosleep
Definition: sflib.h:128
static static fork const void static count static fd const char const char static newpath chdir
Definition: sflib.h:33
static static sync static getppid static getegid const char static filename char static len const char char static bufsiz static mask static vfork const void static prot static getpgrp const char static swapflags static arg static fd static protocol static who struct sockaddr static addrlen static backlog struct timeval struct timezone static tz const struct iovec vector
Definition: sflib.h:82
static static sync static getppid static getegid const char static filename char static len const char char static bufsiz static mask static vfork mprotect
Definition: sflib.h:71
static static sync static getppid static getegid const char static filename char static len const char char static bufsiz static mask static vfork const void static prot static getpgrp const char static swapflags static arg static fd static protocol which
Definition: sflib.h:79
static static fork write
Definition: sflib.h:33
static static sync static getppid static getegid const char static filename request
Definition: sflib.h:62
static static sync static getppid static getegid const char static filename char static len const char char static bufsiz static mask static vfork const void static prot static getpgrp const char static swapflags static arg static fd static protocol static who struct sockaddr static addrlen static backlog struct timeval struct timezone static tz const struct iovec static count static mode const void const struct sockaddr static tolen const char static pathname void static offset struct stat static buf void long static basep static whence static length const void static len static semflg const void static shmflg const struct timespec struct timespec static rem const char static group msync
Definition: sflib.h:133
static static sync static getppid static getegid const char static filename char static len const char char static bufsiz static mask static vfork const void static prot static getpgrp const char static swapflags static arg static fd static protocol static who struct sockaddr static addrlen static backlog struct timeval struct timezone static tz const struct iovec static count static mode const void const struct sockaddr static tolen const char static pathname void static offset filedes
Definition: sflib.h:107
static static sync static getppid static getegid const char static filename char static len const char char static bufsiz static mask static vfork const void static prot static getpgrp const char static swapflags static arg _sfsyscall5(int, select, int, n, fd_set *, readfds, fd_set *, writefds, fd_set *, exceptfds, struct timeval *, timeout) static inline _sfsyscall1(int
static static sync static getppid static getegid const char static filename char static len const char char static bufsiz static mask static vfork const void static prot static getpgrp const char static swapflags static arg static fd static protocol static who struct sockaddr static addrlen static backlog struct timeval struct timezone static tz const struct iovec static count static mode const void const struct sockaddr static tolen const char static pathname void static offset struct stat static buf void long static basep static whence static length const void static len static semflg const void static shmflg const struct timespec struct timespec static rem const char static group const void static flags fstatfs
Definition: sflib.h:137
static static fork const void static count close
Definition: sflib.h:33
static static sync static getppid static getegid const char static filename char static len const char char static bufsiz static mask static vfork const void static prot static getpgrp const char static swapflags static arg static fd static protocol static who struct sockaddr static addrlen static backlog struct timeval struct timezone static tz const struct iovec static count static mode const void const struct sockaddr static tolen const char static pathname void count
Definition: sflib.h:98
static static fork fd
Definition: sflib.h:33
static static sync static getppid static getegid acct
Definition: sflib.h:60
static static fork const void static count static fd const char const char static newpath const char static path const char static mode static getpid static gid static geteuid void struct sockaddr from
Definition: sflib.h:44
static static sync static getppid static getegid const char static filename char static len const char char static bufsiz static mask static vfork const void static prot static getpgrp const char static swapflags static arg static fd static protocol static who struct sockaddr static addrlen static backlog struct timeval struct timezone static tz const struct iovec static count static mode const void const struct sockaddr static tolen rmdir
Definition: sflib.h:90
static static sync static getppid static getegid const char static filename char static len const char char static bufsiz static mask static vfork const void static prot static getpgrp const char static swapflags static arg static fd static protocol static who struct sockaddr static addrlen static backlog struct timeval struct timezone static tz const struct iovec static count static mode const void const struct sockaddr static tolen const char static pathname void static offset struct stat static buf void long static basep static whence static length const void static len static semflg const void static shmflg const struct timespec struct timespec static rem const char static group const void start
Definition: sflib.h:133
static static sync static getppid static getegid const char static filename char static len const char char static bufsiz static mask static vfork const void static prot static getpgrp const char static swapflags static arg static fd static protocol static who struct sockaddr static addrlen static backlog gettimeofday
Definition: sflib.h:79
static static sync static getppid static getegid const char static filename char static len const char char static bufsiz static mask static vfork const void static prot static getpgrp const char static swapflags static arg static fd type
Definition: sflib.h:79
static static sync static getppid static getegid const char static filename char argp
Definition: sflib.h:62
static static sync static getppid static getegid const char static filename char static len readlink
Definition: sflib.h:65
static static sync static getppid static getegid const char static filename char static len const char char static bufsiz static mask static vfork const void static prot static getpgrp const char static swapflags static arg static fd static protocol static who struct sockaddr static addrlen static backlog struct timeval struct timezone static tz const struct iovec static count static mode const void const struct sockaddr static tolen const char static pathname void static offset struct stat static buf void long static basep static whence static length const void static len static semflg const void static shmflg const struct timespec struct timespec static rem const char owner
Definition: sflib.h:133
static static sync static getppid static getegid const char static filename char static len const char char static bufsiz static mask static vfork const void static prot static getpgrp const char static swapflags cmd
Definition: sflib.h:79
static static sync static getppid static getegid const char static filename char static len const char char static bufsiz static mask static vfork const void static prot static getpgrp const char static swapflags static arg static fd static protocol static who struct sockaddr static addrlen static backlog struct timeval struct timezone static tz const struct iovec static count static mode const void const struct sockaddr static tolen const char static pathname void static offset fstat
Definition: sflib.h:107
static static sync static getppid static getegid const char static filename ioctl
Definition: sflib.h:62
static static fork const void static count static fd const char const char static newpath const char static path const char static mode static getpid static gid static geteuid s
Definition: sflib.h:44
static static sync static getppid static getegid const char static filename char static len const char char static bufsiz static mask static vfork const void static prot static getpgrp const char static swapflags static arg static fd static protocol static who struct sockaddr static addrlen static backlog struct timeval struct timezone static tz const struct iovec static count static mode const void const struct sockaddr static tolen const char static pathname pread
Definition: sflib.h:98
static static sync static getppid static getegid const char static filename char static len const char char static bufsiz umask
Definition: sflib.h:65
static static sync static getppid static getegid const char static filename d
Definition: sflib.h:62
static static sync static getppid static getegid const char static filename char static len const char char static bufsiz static mask static vfork const void static prot static getpgrp const char static swapflags fcntl
Definition: sflib.h:79
static static sync static getppid static getegid const char static filename char static len const char char static bufsiz static mask static vfork const void static prot static getpgrp const char static swapflags static arg fsync
Definition: sflib.h:79
static static sync static getppid static getegid const char static filename char static len const char char static bufsiz static mask static vfork const void static prot static getpgrp const char static swapflags static arg static fd static protocol static who struct sockaddr static addrlen static backlog struct timeval struct timezone static tz writev
Definition: sflib.h:82
static static fork const void static count static fd const char const char static newpath const char static path chmod
Definition: sflib.h:35
static static sync static getppid static getegid const char static filename char static len const char char static bufsiz static mask static vfork const void static prot static getpgrp const char static swapflags static arg static fd static protocol static who struct sockaddr static addrlen static backlog struct timeval struct timezone static tz const struct iovec static count static mode const void const struct sockaddr static tolen const char static pathname void static offset struct stat static buf void long static basep lseek
Definition: sflib.h:113
static static sync static getppid static getegid const char static filename char static len const char char static bufsiz static mask static vfork const void static prot static getpgrp const char static swapflags static arg static fd static protocol getpriority
Definition: sflib.h:79
static static sync static getppid static getegid const char static filename char static len const char char static bufsiz static mask static vfork const void static prot static getpgrp const char static swapflags static arg static fd static protocol static who struct sockaddr static addrlen static backlog struct timeval struct timezone static tz const struct iovec static count static mode const void const struct sockaddr static tolen const char static pathname void static offset struct stat static buf void long static basep static whence static length const void static len static semflg const void static shmflg const struct timespec struct timespec static rem lchown
Definition: sflib.h:133
static static sync static getppid static getegid const char static filename char static len const char char static bufsiz static mask static vfork const void static prot static getpgrp const char static swapflags static arg static fd static protocol static who struct sockaddr static addrlen static backlog struct timeval struct timezone static tz const struct iovec static count static mode const void const struct sockaddr static tolen const char static pathname void static offset struct stat static buf void long static basep static whence static length const void static len static semflg const void static shmflg const struct timespec struct timespec static rem const char static group const void length
Definition: sflib.h:133
static static sync static getppid static getegid const char static filename char static len const char char static bufsiz static mask static vfork const void static prot static getpgrp const char static swapflags static arg static fd static protocol static who struct sockaddr static addrlen static backlog struct timeval struct timezone static tz const struct iovec static count static mode const void const struct sockaddr static tolen const char static pathname void static offset struct stat static buf void long static basep _sfsyscall6(void *, mmap, void *, start, size_t, length, int, prot, int, flags, int, fd, off_t, offset) static inline _sfsyscall3(off_t
static static sync static getppid static getegid const char static filename char static len const char char static bufsiz static mask static vfork const void static prot static getpgrp swapon
Definition: sflib.h:77
static static fork const void static count static fd link
Definition: sflib.h:33
static static sync static getppid static getegid const char static filename char static len const char char static bufsiz static mask static vfork const void addr
Definition: sflib.h:71
voidpf void uLong size
Definition: ioapi.h:138
const char * filename
Definition: ioapi.h:137
voidpf uLong offset
Definition: ioapi.h:144
const char int mode
Definition: ioapi.h:137
voidpf void * buf
Definition: ioapi.h:138
void * p
Definition: libc.cpp:67
#define inline
Definition: ansidecl.h:243
#define const
Definition: ansidecl.h:240
static void list(RzEgg *egg)
Definition: rz-gg.c:52
static const char struct stat static buf struct stat static buf static idle const char static path static fd setdomainname
Definition: sflib.h:144
static const char struct stat static buf struct stat static buf static idle const char static path static fd const char static len const void static prot const char struct module static image struct kernel_sym static table unsigned char static buf static fsuid unsigned struct dirent unsigned static count const struct iovec static count static pid const void static len static flags const struct sched_param static p static pid static policy struct timespec static tp static suid unsigned struct vm86plus_struct static v86 void static offset header
Definition: sflib.h:204
static const char struct stat static buf struct stat static buf static idle const char static path static fd const char static len const void static prot const char struct module static image struct kernel_sym static table unsigned char static buf static fsuid unsigned struct dirent unsigned static count const struct iovec static count getsid
Definition: sflib.h:168
static static fork const void static count static fd const char const char static newpath char char char static envp time_t static t const char static mode static whence _sfsyscall0(pid_t, getpid) static inline _sfsyscall1(int
static static fork const void static count static fd const char const char static newpath char char char static envp time_t static t const char static mode static whence const char static dir time_t static t unsigned static seconds const char struct utimbuf static buf nice
Definition: sflib.h:61
static static fork const void static count static fd const char const char static newpath char char char static envp time_t static t const char static mode static whence const char static dir time_t static t _sfsyscall4(long, ptrace, int, request, pid_t, pid, void *, addr, void *, data) static inline _sfsyscall1(unsigned int
static const char struct stat static buf struct stat static buf static idle const char static path static fd const char static len const void static prot const char struct module static image struct kernel_sym static table unsigned char static buf static fsuid unsigned struct dirent unsigned static count const struct iovec static count static pid const void static len static flags const struct sched_param static p static pid static policy struct timespec static tp static suid unsigned struct vm86plus_struct static v86 void static offset capget
Definition: sflib.h:204
static static fork const void static count static fd const char const char static newpath char char char static envp time_t static t const char static mode static whence const char static dir time_t static t unsigned static seconds const char struct utimbuf static buf static inc static sig const char static mode static oldfd struct tms static buf static getgid static geteuid const char static filename static arg static mask struct ustat static ubuf static getppid static setsid static egid sigset_t static set struct timeval struct timezone static tz n
Definition: sflib.h:108
static static fork const void static count static fd const char const char static newpath char char char static envp time_t static t const char static mode static whence const char static dir time_t static t unsigned static seconds const char struct utimbuf static buf static inc static sig const char static mode static oldfd struct tms static buf static getgid static geteuid const char static filename static arg static mask struct ustat static ubuf static getppid static setsid static egid sigset_t static set struct timeval struct timezone static tz fd_set fd_set fd_set struct timeval static timeout const char char static bufsiz const char static swapflags void prot
Definition: sflib.h:115
static static fork _sfsyscall3(ssize_t, read, int, fd, void *, buf, size_t, count) static inline _sfsyscall3(ssize_t
static const char struct stat static buf struct stat static buf static idle const char static path static fd const char static len const void static prot const char struct module static image struct kernel_sym static table unsigned char static buf static fsuid unsigned struct dirent unsigned static count const struct iovec static count static pid const void static len static flags const struct sched_param static p static pid static policy struct timespec static tp setresuid
Definition: sflib.h:184
static const char struct stat static buf struct stat static buf static idle const char static path static fd const char static len const void static prot const char struct module static image struct kernel_sym static table unsigned char static buf static fsuid unsigned struct dirent unsigned static count const struct iovec static count static pid const void static len static flags const struct sched_param static p static pid static policy struct timespec static tp static suid vm86
Definition: sflib.h:186
static static fork const void static count static fd const char const char static newpath char char char static envp time_t static t const char static mode static whence const char static dir time_t static t unsigned static seconds const char struct utimbuf static buf static inc static sig const char static mode static oldfd struct tms static buf static getgid static geteuid const char static filename static arg static mask struct ustat static ubuf static getppid static setsid rgid
Definition: sflib.h:97
static const char struct stat static buf struct stat static buf static idle const char static path static fd const char static len const void static prot const char struct module static image struct kernel_sym static table unsigned char static buf static fsuid unsigned struct dirent unsigned static count const struct iovec static count static pid const void static len static flags const struct sched_param static p static pid sched_get_priority_max
Definition: sflib.h:179
static const char struct stat static buf struct stat static buf static idle const char static path static fd const char static len const void static prot const char struct module static image struct kernel_sym static table unsigned char static buf static fsuid unsigned struct dirent dirp
Definition: sflib.h:163
static static fork const void static count static fd const char const char static newpath char char char static envp time_t static t const char static mode static whence const char static dir time_t static t unsigned static seconds const char struct utimbuf static buf static inc static sig mkdir
Definition: sflib.h:66
static const char file_name
Definition: sflib.h:131
static static fork const void static count static fd _sfsyscall2(int, creat, const char *, pathname, mode_t, mode) static inline _sfsyscall2(int
static static fork const void static count static fd const char const char static newpath char char char static envp time
Definition: sflib.h:42
static static fork const void static count static fd const char const char static newpath char char char static envp time_t static t const char static mode static whence const char static dir time_t static t unsigned static seconds const char struct utimbuf static buf static inc static sig const char static mode static oldfd struct tms static buf static getgid static geteuid const char static filename static arg static mask struct ustat static ubuf static getppid static setsid static egid sigset_t static set struct timeval struct timezone static tz fd_set fd_set fd_set exceptfds
Definition: sflib.h:108
static const char struct stat static buf struct stat static buf static idle swapoff
Definition: sflib.h:138
static static fork const void static count static fd const char const char static newpath char char char static envp time_t static t const char static mode static whence const char static dir time_t static t alarm
Definition: sflib.h:55
static static fork const void static count static fd const char const char static newpath char char char static envp time_t static t const char static mode static whence const char static dir time_t static t unsigned static seconds const char struct utimbuf static buf static inc static sig const char static mode static oldfd struct tms static buf static getgid static geteuid const char static filename static arg static mask struct ustat static ubuf static getppid static setsid static egid sigset_t static set struct timeval struct timezone static tz fd_set fd_set fd_set struct timeval static timeout const char char static bufsiz const char static swapflags void static offset truncate
Definition: sflib.h:117
static const char struct stat static buf struct stat static buf static idle const char static path static fd const char static len const void static prot const char struct module static image struct kernel_sym static table unsigned char static buf static fsuid unsigned struct dirent unsigned static count const struct iovec static count static pid const void static len static flags const struct sched_param static p static pid static policy struct timespec static tp ruid
Definition: sflib.h:184
static const char struct stat static buf struct stat static buf static idle const char static path static fd const char static len const void static prot const char struct module static image struct kernel_sym static table unsigned char static buf static fsuid unsigned struct dirent unsigned static count readv
Definition: sflib.h:166
static static fork const void static count static fd const char const char static newpath execve
Definition: sflib.h:40
static const char struct stat static buf struct stat static buf static idle const char static path static fd const char static len const void static prot const char struct module static image struct kernel_sym static table unsigned char static buf static fsuid unsigned struct dirent unsigned static count const struct iovec static count static pid const void static len static flags const struct sched_param static p sched_getscheduler
Definition: sflib.h:177
static static fork const void static count static fd const char const char static newpath char char char static envp time_t static t const char static mode static whence umount
Definition: sflib.h:50
static const char struct stat static buf struct stat static buf static idle const char static path static fd const char static len const void static prot const char struct module static image struct kernel_sym static table unsigned char static buf static fsuid unsigned struct dirent unsigned static count const struct iovec static count static pid const void static len static flags sched_setparam
Definition: sflib.h:174
static const char struct stat static buf struct stat static buf static idle const char static path static fd const char static len const void static prot const char struct module static image struct kernel_sym static table unsigned char static buf setfsuid
Definition: sflib.h:161
static const char struct stat static buf struct stat static buf static idle const char static path static fd const char static len const void static prot const char struct module static image get_kernel_syms
Definition: sflib.h:153
static static fork const void static count static fd const char const char static newpath char char char static envp time_t static t const char static mode static whence const char static dir time_t static t unsigned static seconds const char struct utimbuf static buf static inc static sig const char static mode static oldfd times
Definition: sflib.h:70
static static fork const void static count static fd const char const char static newpath char char char static envp time_t static t const char static mode static whence const char static dir time_t static t unsigned static seconds const char struct utimbuf static buf static inc static sig const char static mode static oldfd struct tms static buf static getgid static geteuid const char static filename static arg static mask struct ustat static ubuf static getppid static setsid static egid sigset_t static set struct timeval struct timezone static tz fd_set fd_set fd_set struct timeval static timeout const char char static bufsiz const char static swapflags void static offset const char static length static mode static who const char struct statfs static buf unsigned unsigned num
Definition: sflib.h:126
static const char struct stat static buf struct stat static buf static idle const char static path static fd const char static len const void static prot const char struct module static image struct kernel_sym static table sysfs
Definition: sflib.h:158
static const char struct stat static buf struct stat static buf static idle const char static path static fd const char static len const void static prot const char struct module static image struct kernel_sym static table unsigned char static buf static fsuid unsigned struct dirent unsigned static count const struct iovec static count static pid const void static len static flags const struct sched_param static p static pid static policy struct timespec static tp euid
Definition: sflib.h:184
static static fork const void static count static fd const char const char static newpath char char char static envp time_t static t const char static mode static whence const char static dir time_t static t unsigned static seconds const char struct utimbuf static buf static inc kill
Definition: sflib.h:64
static const char struct stat static buf struct stat static buf static idle const char static path static fd const char static len const void static prot init_module
Definition: sflib.h:151
static const char struct stat static buf struct stat static buf static idle const char static path static fd const char static len const void static prot const char struct module static image struct kernel_sym static table unsigned fs_index
Definition: sflib.h:158
static static fork const void static count static fd const char const char static newpath char char char static envp time_t static t const char static mode static whence const char static dir time_t static t unsigned static seconds const char struct utimbuf static buf static inc static sig const char pathname
Definition: sflib.h:66
static static fork const void static count static fd const char const char static newpath char char char static envp time_t static t const char static mode static whence const char static dir time_t static t unsigned static seconds const char struct utimbuf static buf static inc pid
Definition: sflib.h:64
static static fork const void static count static fd const char const char static newpath char char char static envp time_t static t const char static mode static whence const char static dir stime
Definition: sflib.h:53
static static fork const void static count static fd const char const char static newpath char char char static envp time_t static t const char static mode static whence const char static dir time_t static t unsigned static seconds const char struct utimbuf static buf static inc static sig const char static mode static oldfd struct tms static buf static getgid static geteuid const char static filename static arg static mask struct ustat static ubuf static getppid static setsid static egid sigset_t static set struct timeval struct timezone static tz fd_set fd_set fd_set struct timeval static timeout const char char static bufsiz const char static swapflags void static offset const char static length static mode static who const char struct statfs static buf ioperm
Definition: sflib.h:126
static static fork const void static count static fd const char const char static newpath char char char static envp time_t static t const char static mode static whence const char static dir time_t static t unsigned static seconds const char struct utimbuf static buf static inc static sig const char static mode static oldfd struct tms static buf static getgid static geteuid const char static filename static arg static mask struct ustat static ubuf static getppid static setsid static egid sigset_t static set struct timeval struct timezone static tz fd_set readfds
Definition: sflib.h:108
static static fork const void static count static fd const char const char static newpath char char char static envp time_t static t const char static mode static whence const char static dir time_t static t unsigned static seconds const char struct utimbuf static buf static inc static sig const char static mode static oldfd struct tms static buf static getgid static geteuid const char static filename static arg static mask struct ustat static ubuf static getppid static setsid setregid
Definition: sflib.h:97
static static fork const void static count static fd const char const char static newpath char char char static envp time_t static t const char static mode static whence const char static dir time_t static t unsigned static seconds utime
Definition: sflib.h:57
static static fork const void static count static fd const char const char static newpath char char char static envp time_t static t const char static mode static whence const char static dir time_t static t unsigned static seconds const char struct utimbuf static buf static inc static sig const char static mode static oldfd struct tms static buf static getgid static geteuid const char static filename static arg static mask dev
Definition: sflib.h:88
static const char struct stat static buf struct stat static buf static idle const char static path static fd const char static len const void static prot const char struct module static image struct kernel_sym static table unsigned char static buf static fsuid unsigned struct dirent unsigned static count const struct iovec static count static pid const void static len static flags const struct sched_param static p static pid static policy sched_rr_get_interval
Definition: sflib.h:181
static _sfsyscall1(int, exit, int, status) static inline _sfsyscall0(pid_t
static const char struct stat static buf struct stat static buf static idle const char static path static fd const char static len const void static prot const char struct module static image struct kernel_sym static table unsigned char static buf static fsuid unsigned struct dirent unsigned static count const struct iovec static count static pid mlock
Definition: sflib.h:170
static static fork const void static count static fd const char const char static newpath char char char static envp time_t static t const char static mode static whence const char static dir time_t static t unsigned static seconds const char struct utimbuf static buf static inc static sig const char static mode dup
Definition: sflib.h:68
static static fork const void static count static fd const char const char static newpath char char char static envp time_t static t const char static mode static whence const char static dir time_t static t unsigned static seconds const char struct utimbuf static buf static inc static sig const char static mode static oldfd struct tms static buf static getgid static geteuid const char static filename static arg static mask struct ustat static ubuf static getppid static setsid static egid sigset_t static set struct timeval struct timezone static tz fd_set fd_set writefds
Definition: sflib.h:108
static static fork const void static count static fd const char const char static newpath char char char static envp time_t static t const char static mode static whence const char static dir time_t static t unsigned static seconds const char struct utimbuf static buf static inc static sig const char static mode static oldfd struct tms static buf static getgid static geteuid const char static filename static arg static mask struct ustat static ubuf static getppid static setsid static egid sigset_t static set struct timeval struct timezone static tz fd_set fd_set fd_set struct timeval static timeout const char char static bufsiz const char static swapflags mmap
Definition: sflib.h:115
static const char struct stat static buf struct stat static buf static idle const char static path static fd const char static len const void static prot const char struct module static image struct kernel_sym static table unsigned char static buf static fsuid getdents
Definition: sflib.h:163
static static fork const void static count static fd const char const char static newpath char char argv
Definition: sflib.h:40
static const char struct stat static buf struct stat static buf static idle const char static path static fd const char static len const void static prot const char struct module static image struct kernel_sym static table unsigned char static buf static fsuid unsigned struct dirent unsigned static count const struct iovec static count static pid const void static len static flags const struct sched_param static p static pid static policy struct timespec static tp static suid unsigned fn
Definition: sflib.h:186
static static fork const void static count static fd const char const char static newpath char char char static envp time_t static t const char static mode static whence const char static dir time_t static t unsigned static seconds const char struct utimbuf static buf static inc static sig const char static mode static oldfd struct tms static buf static getgid static geteuid const char static filename static arg static mask struct ustat static ubuf static getppid static setsid static egid sigset_t static set struct timeval struct timezone static tz select
Definition: sflib.h:108
static static fork const void static count static fd const char const char static newpath char char char static envp time_t static t const char static mode static whence const char static dir time_t static t unsigned static seconds const char struct utimbuf static buf static inc static sig const char static mode static oldfd struct tms static buf static getgid static geteuid const char static filename static arg static mask struct ustat static ubuf static getppid static setsid static egid sigpending
Definition: sflib.h:99
static static fork const void static count static fd const char static mode const char static pathname const char static path const char static dev const char static group static getpid static getuid void void static data static pause access
Definition: sflib.h:64
static static fork const void static count static fd const char static mode const char static pathname const char static path const char static dev const char static group static getpid static getuid void void static data static pause const char static mode static sync const char const char static newpath const char static pathname unsigned long static filedes void static end_data_segment static handler static getegid char static len static pgid const char static path static newfd static getpgrp static euid const sigset_t static mask sethostname
Definition: sflib.h:105
static const char struct stat static buf struct stat static buf static vhangup int struct rusage static rusage struct sysinfo static info unsigned static __unused struct utsname static buf const char static size delete_module
Definition: sflib.h:160
static const char struct stat static buf struct stat static buf static vhangup int struct rusage static rusage struct sysinfo static info unsigned static __unused struct utsname static buf create_module
Definition: sflib.h:158
static const char struct stat static buf struct stat static buf static vhangup int struct rusage static rusage struct sysinfo static info unsigned static __unused struct utsname static buf const char static size const char static name static pid unsigned static persona static fsgid const void static flags const struct iovec static count static fd const void static len static munlockall struct sched_param static p static sched_yield sched_get_priority_min
Definition: sflib.h:188
static static fork const void static count static fd const char static mode const char static pathname const char static path const char static dev const char static group static getpid static getuid void void static data static pause const char static mode static sync const char const char static newpath const char static pathname unsigned long static filedes void static end_data_segment static handler static getegid char static len static pgid const char static path dup2
Definition: sflib.h:94
static static fork const void static count static fd const char static mode const char static pathname const char static path const char static dev const char static group static getpid static getuid void void static data static pause const char static mode static sync const char const char static newpath const char static pathname unsigned long static filedes void static end_data_segment static handler static getegid char static len static pgid const char static path oldfd
Definition: sflib.h:94
static const char struct stat static buf struct stat static buf static vhangup int struct rusage static rusage struct sysinfo static info unsigned static __unused struct utsname static buf const char static size const char static name static pid unsigned static persona static fsgid const void static flags const struct iovec static count static fd const void static len static munlockall struct sched_param static p static sched_yield static policy const struct timespec struct timespec static rem getresuid
Definition: sflib.h:193
static const char struct stat static buf struct stat static buf static vhangup int struct rusage static rusage struct sysinfo static info unsigned static __unused struct utsname static buf const char static size const char static name static pid personality
Definition: sflib.h:167
static const char struct stat static buf struct stat static buf static vhangup int struct rusage static rusage struct sysinfo static info unsigned static __unused struct utsname static buf const char static size const char static name static pid unsigned static persona static fsgid const void static flags const struct iovec static count static fd const void static len static munlockall struct sched_param static p static sched_yield static policy const struct timespec struct timespec static rem uid_t uid_t uid_t static suid poll
Definition: sflib.h:196
static const char struct stat static buf struct stat static buf static vhangup int struct rusage static rusage struct sysinfo static info unsigned static __unused struct utsname static buf const char static size const char static name static pid unsigned static persona static fsgid const void static flags const struct iovec static count static fd const void static len static munlockall sched_getparam
Definition: sflib.h:183
static static fork const void static count static fd const char static mode const char static pathname const char static path const char static dev const char static group static getpid static getuid void void static data static pause const char static mode static sync const char const char static newpath const char static pathname unsigned long static filedes void static end_data_segment static handler static getegid char static len static pgid const char static path static newfd static getpgrp setreuid
Definition: sflib.h:101
static const char struct stat static buf struct stat static buf static vhangup int struct rusage static rusage struct sysinfo static info unsigned static __unused struct utsname static buf const char static size const char static name static pid unsigned static persona static fsgid const void static flags const struct iovec static count fdatasync
Definition: sflib.h:177
static static fork const void static count static fd const char static mode const char static pathname const char static path const char static dev const char static group static getpid static getuid void void static data static pause const char static mode static sync const char const char static newpath const char static pathname unsigned long static filedes void static end_data_segment static handler static getegid char static len static pgid const char static path static newfd static getpgrp static euid const sigset_t static mask const char static len const gid_t static list const char const char static newpath uselib
Definition: sflib.h:117
static static fork const void static count static fd const char static mode const char static pathname const char static path const char static dev const char static group static getpid static getuid void void static data static pause const char static mode static sync const char const char static newpath const char static pathname unsigned long static filedes void static end_data_segment static handler static getegid char static len static pgid const char static path static newfd static getpgrp static euid const sigset_t static mask const char static len setgroups
Definition: sflib.h:112
static static fork const void static count static fd const char static mode const char static pathname const char static path const char static dev const char static group static getpid static getuid void void static data static pause const char static mode static sync const char const char static newpath const char static pathname unsigned long static filedes void static end_data_segment static handler static getegid char static len static pgid const char static path static newfd static getpgrp static euid const sigset_t static mask const char static len const gid_t static list symlink
Definition: sflib.h:114
static const char struct stat static buf struct stat static buf static vhangup int options
Definition: sflib.h:145
static const char struct stat static buf struct stat static buf static vhangup int struct rusage static rusage struct sysinfo static info unsigned static __unused struct utsname static buf const char static size const char static name getpgid
Definition: sflib.h:163
static static fork const void static count static fd const char static mode const char static pathname const char static path const char static dev const char static group static getpid static getuid void void static data static pause const char static mode static sync const char const char static newpath const char static pathname unsigned long static filedes brk
Definition: sflib.h:76
static const char struct stat static buf struct stat static buf static vhangup int struct rusage static rusage struct sysinfo static info unsigned static __unused struct utsname static buf const char static size const char static name static pid unsigned static persona static fsgid const void static flags const struct iovec static count static fd const void static len static munlockall struct sched_param static p static sched_yield static policy const struct timespec struct timespec static rem uid_t uid_t uid_t static suid struct pollfd ufds
Definition: sflib.h:196
static static fork const void static count static fd const char static mode const char static pathname const char static path const char static dev const char static group static getpid static getuid void void static data static pause const char static mode static sync const char const char static newpath const char static pathname unsigned long static filedes void static end_data_segment signal
Definition: sflib.h:79
static static fork const void static count static fd const char static mode unlink
Definition: sflib.h:41
static static fork const void static count static fd const char static mode const char static pathname const char static path const char static dev const char static group static getpid static getuid void void static data static pause const char static mode static sync const char const char static newpath const char static pathname unsigned long static filedes void static end_data_segment static handler static getegid char static len static pgid const char static path static newfd static getpgrp static euid const sigset_t static mask const char static len const gid_t static list const char const char static newpath const char static library readdir
Definition: sflib.h:120
static const char struct stat static buf struct stat static buf static vhangup int struct rusage static rusage struct sysinfo static info sigreturn
Definition: sflib.h:150
static static fork const void static count static fd const char static mode const char static pathname const char static path const char static dev const char static group static getpid static getuid void void static data static pause const char static mode static sync const char const char static newpath const char static pathname unsigned long static filedes void static end_data_segment static handler static getegid char static len static pgid chroot
Definition: sflib.h:92
static static fork const void static count static fd const char static mode const char static pathname const char static path const char static dev const char static group static getpid static getuid void void static data static pause const char static mode static sync const char const char static newpath const char static pathname pipe
Definition: sflib.h:73
static static fork const void static count static fd const char static mode const char static pathname const char static path const char static dev const char static group static getpid static getuid void void static data static pause const char static mode static sync const char const char static newpath const char static pathname unsigned long static filedes void static end_data_segment static handler static getegid char static len static pgid const char static path static newfd static getpgrp static euid sigsuspend
Definition: sflib.h:103
static const char struct stat static buf struct stat static buf static vhangup int status
Definition: sflib.h:145
static static fork const void static count static fd const char static mode const char static pathname const char static path const char static dev const char static group static getpid static getuid void void static data static pause const char static mode static sync const char const char static newpath const char static pathname unsigned long static filedes void static end_data_segment signum
Definition: sflib.h:79
static static fork const void static count static fd creat
Definition: sflib.h:39
static const char struct stat static buf struct stat static buf static vhangup int struct rusage static rusage struct sysinfo static info unsigned static __unused struct utsname static buf const char static size const char static name static pid unsigned static persona static fsgid const void static flags const struct iovec static count static fd const void static len static munlockall struct sched_param static p static sched_yield static policy const struct timespec struct timespec static rem uid_t uid_t uid_t static suid struct pollfd unsigned nfds
Definition: sflib.h:196
static static fork const void static count static fd const char static mode const char static pathname const char static path const char static dev const char static group static getpid static getuid void void static data static pause const char static mode static sync const char const char static newpath const char static pathname unsigned long static filedes void static end_data_segment sighandler_t
Definition: sflib.h:79
static static fork const void static count static fd const char static mode const char static pathname const char static path const char static dev const char static group static getpid static getuid ptrace
Definition: sflib.h:57
static const char struct stat static buf struct stat static buf static vhangup int struct rusage static rusage struct sysinfo static info unsigned static __unused struct utsname static buf const char static size const char static name static pid unsigned static persona static fsgid const void static flags const struct iovec static count static fd const void static len static munlockall struct sched_param static p static sched_yield static policy const struct timespec struct timespec static rem uid_t uid_t uid_t static suid struct pollfd unsigned static timeout chown
Definition: sflib.h:210
static static fork const void static count static fd const char static mode const char static pathname const char static path const char static dev const char static group static getpid static getuid void void static data static pause const char static mode static sync rename
Definition: sflib.h:69
static const char struct stat static buf struct stat static buf static vhangup wait4
Definition: sflib.h:145
static const char struct stat static buf struct stat static buf static vhangup int struct rusage static rusage struct sysinfo static info unsigned static __unused struct utsname static buf const char static size const char static name static pid unsigned static persona setfsgid
Definition: sflib.h:170
static static fork const void static count static fd const char static mode const char static pathname const char static path const char static dev const char static group static getpid static getuid void void static data static pause const char static mode static sync const char const char static newpath const char static pathname unsigned long static filedes void static end_data_segment static handler static getegid char static len setpgid
Definition: sflib.h:88
static static fork const void static count static fd const char static mode const char static pathname const char static path mknod
Definition: sflib.h:45
static const char struct stat static buf struct stat static buf static vhangup int struct rusage static rusage struct sysinfo static info unsigned static __unused uname
Definition: sflib.h:153
static const void static count static fd struct stat static buf struct pollfd unsigned static timeout void static offset munmap
Definition: sflib.h:43
static void struct sockaddr socklen_t static fromlen static backlog static fork char char char static envp int struct rusage static rusage struct utsname static buf struct sembuf static nsops static fd const char static length unsigned struct dirent unsigned static count const char const char static newpath const char static pathname const char const char static newpath const char const char static newpath const char static mode const char static group const char static group struct timeval struct timezone static tz struct tms static buf static getuid static getgid static getegid static getppid static setsid static egid static suid static pid static fsgid static data const char static dev unsigned static persona const char struct statfs static buf unsigned char static buf who
Definition: sflib.h:173
static void struct sockaddr socklen_t static fromlen static backlog static fork char char char static envp int struct rusage static rusage struct utsname static buf struct sembuf static nsops static fd const char static length unsigned struct dirent unsigned static count const char const char static newpath const char static pathname const char const char static newpath const char const char static newpath const char static mode const char static group const char static group struct timeval struct timezone static tz struct tms static buf static getuid static getgid static getegid static getppid static setsid static egid static suid static pid static fsgid static data const char static dev unsigned static persona const char struct statfs static buf unsigned char static buf setpriority
Definition: sflib.h:173
int args
Definition: mipsasm.c:18
int socketcall(int call, unsigned long *args)
int dev_t
Definition: sftypes.h:61
int mode_t
Definition: sftypes.h:42
int uid_t
Definition: sftypes.h:44
int cap_user_header_t
Definition: sftypes.h:64
int caddr_t
Definition: sftypes.h:62
int gid_t
Definition: sftypes.h:45
int clock_t
Definition: sftypes.h:43
int off_t
Definition: sftypes.h:41
int pid_t
Definition: sftypes.h:38
int ssize_t
Definition: sftypes.h:39
int sigset_t
Definition: sftypes.h:63
int time_t
Definition: sftypes.h:66
int cap_user_data_t
Definition: sftypes.h:65
Definition: sftypes.h:48
Definition: sftypes.h:73
Definition: sftypes.h:77
Definition: z80asm.h:102
Definition: getopt.h:84
Definition: sftypes.h:75
Definition: sftypes.h:80
Definition: sftypes.h:74
Definition: sftypes.h:55
Definition: sftypes.h:79
uv_timer_t timeout
Definition: main.c:9
int read(izstream &zs, T *x, Items items)
Definition: zstream.h:115