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/amd64
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 
32 static inline _sfsyscall3( ssize_t, read, int, fd, void *, buf, size_t, count )
33 static inline _sfsyscall3( ssize_t, write, int, fd, const void *, buf, size_t, count )
34 static inline _sfsyscall3( int, open, const char *, pathname, int, flags, mode_t, mode )
35 static inline _sfsyscall1( int, close, int, fd )
36 static inline _sfsyscall2( int, stat, const char *, file_name, struct stat *, buf )
37 static inline _sfsyscall2( int, fstat, int, filedes, struct stat *, buf )
38 static inline _sfsyscall2( int, lstat, const char *, file_name, struct stat *, buf )
39 static inline _sfsyscall3( int, poll, struct pollfd *, ufds, unsigned int, nfds, int, timeout )
40 static inline _sfsyscall3( off_t, lseek, int, fildes, off_t, offset, int, whence )
41 static inline _sfsyscall6(void *,mmap, void *,start, size_t,length, int,prot , int,flags, int,fd, off_t,offset)
42 static inline _sfsyscall3( int, mprotect, const void *, addr, size_t, len, int, prot )
43 static inline _sfsyscall2( int, munmap, void *, start, size_t, length )
44 static inline _sfsyscall1( int, brk, void *, end_data_segment )
45 // rt_sigaction
46 // rt_sigprocmask
47 // rt_sigreturn
48 static inline _sfsyscall4(int, ioctl, int,d, int,request, char *,argp, int,len)
49 // pread64
50 // pwrite64
51 static inline _sfsyscall3( int, readv, int, fd, const struct iovec *, vector, int, count )
52 static inline _sfsyscall3( int, writev, int, fd, const struct iovec *, vector, int, count )
53 static inline _sfsyscall2( int, access, const char *, pathname, int, mode )
54 static inline _sfsyscall1( int, pipe, unsigned long *, filedes)
55 static inline _sfsyscall5( int, select, int, n, fd_set *, readfds, fd_set *, writefds, fd_set *, exceptfds, struct timeval *, timeout)
56 static inline _sfsyscall0( int, sched_yield )
57 // mremap
58 static inline _sfsyscall3( int, msync, const void *, start, size_t, length, int, flags )
59 // mincore
60 // madvise
61 static inline _sfsyscall3(int, shmget, long, key, int, size, int, flags )
62 static inline _sfsyscall3(void *, shmat, int, shmid, const void *, shmaddr, int, shmflg )
63 // shmctl
64 static inline _sfsyscall1( int, dup, int, oldfd )
65 static inline _sfsyscall2( int, dup2, int, oldfd, int, newfd )
66 static inline _sfsyscall0( int, pause )
67 static inline _sfsyscall2( int, nanosleep, const struct timespec *, req, struct timespec *, rem )
68 // getitimer
69 static inline _sfsyscall1( unsigned int, alarm, unsigned int, seconds )
70 // setitimer
71 static inline _sfsyscall0( pid_t, getpid )
72 // sendfile
73 static inline _sfsyscall3(int, socket, int,domain, int,type, int,protocol)
74 static inline _sfsyscall3(int,connect, int,sockfd, const struct sockaddr *,serv_addr, socklen_t,addrlen)
75 static inline _sfsyscall3(int, accept, int,s, struct sockaddr *,addr, socklen_t,addrlen);
76 static inline _sfsyscall6(ssize_t, sendto, int, s, const void *, msg, size_t, len, int, flags, const struct sockaddr *, to, socklen_t, tolen)
77 static inline _sfsyscall6(ssize_t, recvfrom, int, s, void * , buf, size_t, len, int, flags, struct sockaddr * , from, socklen_t * , fromlen)
78 // sendmsg
79 // recvmsg
80 // shutdown
82 static inline _sfsyscall2(int,listen,int,s, int,backlog)
83 // getsockname
84 // getpeername
85 // socketpair
86 static inline _sfsyscall5(int, setsockopt, int, s, int, level, int, optname, void *, optval, socklen_t, optlen)
87 // getsockopt
88 // clone
89 static inline _sfsyscall0( pid_t, fork )
90 static inline _sfsyscall0( pid_t, vfork )
91 static inline _sfsyscall3(int, execve, char *, s, char **, argv, char **,envp)
92 static inline _sfsyscall1(int, exit, int, status)
93 static inline _sfsyscall4(pid_t, wait4, pid_t, pid, int *, status, int, options, struct rusage *, rusage)
94 static inline _sfsyscall2( int, kill, pid_t, pid, int, sig )
95 static inline _sfsyscall1( int, uname, struct utsname *, buf )
96 static inline _sfsyscall3(int, semget, long, key, int, nsems, int, semflg)
97 static inline _sfsyscall3(int, semop, int, semid, struct sembuf *, sops, unsigned, nsops)
98 // semctl
99 // shmdt
100 // msgget
101 // msgsnd
102 // msgrcv
103 // msgctl
104 static inline _sfsyscall3( int, fcntl, int, fd, int, cmd, long, arg )
105 // flock
106 static inline _sfsyscall1( int, fsync, int, fd )
107 static inline _sfsyscall1( int, fdatasync, int, fd )
108 static inline _sfsyscall2( int, truncate, const char *, path, off_t, length )
109 static inline _sfsyscall2( int, ftruncate, int, fd, off_t, length )
110 static inline _sfsyscall3( int, getdents, unsigned int, fd, struct dirent *, dirp, unsigned int, count )
111 // getcwd
112 static inline _sfsyscall1( int, chdir, const char *, path )
113 // fchdir
114 static inline _sfsyscall2( int, rename, const char *, oldpath, const char *, newpath )
115 static inline _sfsyscall2( int, mkdir, const char *, pathname, mode_t, mode )
116 static inline _sfsyscall1( int, rmdir, const char *, pathname )
117 static inline _sfsyscall2( int, creat, const char *, pathname, mode_t, mode )
118 static inline _sfsyscall2( int, link, const char *, oldpath, const char *, newpath )
119 static inline _sfsyscall1( int, unlink, const char *, pathname )
120 static inline _sfsyscall2( int, symlink, const char *, oldpath, const char *, newpath )
121 static inline _sfsyscall3( int, readlink, const char *, path, char *, buf, size_t, bufsiz )
122 static inline _sfsyscall2( int, chmod, const char *, path, mode_t, mode )
123 static inline _sfsyscall2( int, fchmod, int, fildes, mode_t, mode )
124 static inline _sfsyscall3( int, chown, const char *, path, uid_t, owner, gid_t, group )
125 static inline _sfsyscall3( int, fchown, int, fd, uid_t, owner, gid_t, group )
126 static inline _sfsyscall3( int, lchown, const char *, path, uid_t, owner, gid_t, group )
128 static inline _sfsyscall2( int, gettimeofday, struct timeval *, tv, struct timezone *, tz )
129 // getrlimit
130 // getrusage
131 static inline _sfsyscall1( int, sysinfo, struct sysinfo *, info )
132 static inline _sfsyscall1( clock_t, times, struct tms *, buf )
133 static inline _sfsyscall4(long, ptrace, int, request, pid_t, pid, void *,addr, void *,data)
134 static inline _sfsyscall0( uid_t, getuid )
135 static inline _sfsyscall3( int, syslog, int, type, char *, bufp, int, len )
136 static inline _sfsyscall0( gid_t, getgid )
137 // setuid
138 // setgid
139 static inline _sfsyscall0( uid_t, geteuid )
140 static inline _sfsyscall0( gid_t, getegid )
141 static inline _sfsyscall2( int, setpgid, pid_t, pid, pid_t, pgid )
142 static inline _sfsyscall0( pid_t, getppid )
143 static inline _sfsyscall0( pid_t, getpgrp )
144 static inline _sfsyscall0( pid_t, setsid )
146 static inline _sfsyscall2( int, setregid, gid_t, rgid, gid_t, egid )
147 // getgroups
148 static inline _sfsyscall2( int, setgroups, size_t, size, const gid_t *, list )
150 static inline _sfsyscall3( int, getresuid, uid_t *, ruid, uid_t *, euid, uid_t *, suid )
151 // setresgid
152 // getresgid
154 static inline _sfsyscall1( int, setfsuid, uid_t, fsuid )
155 static inline _sfsyscall1( int, setfsgid, uid_t, fsgid )
158 //static inline _sfsyscall2( int, capset, cap_user_header_t, header, const cap_user_data_t, data )
159 // rt_sigpending
160 // rt_sigtimedwait
161 // rt_sigqueueinfo
162 // rt_sigsuspend
163 // sigaltstack
164 static inline _sfsyscall2( int, utime, const char *, filename, struct utimbuf *, buf )
165 static inline _sfsyscall3( int, mknod, const char *, pathname, mode_t, mode, dev_t, dev )
166 static inline _sfsyscall1( int, uselib, const char *, library )
167 static inline _sfsyscall1( int, personality, unsigned long, persona )
168 static inline _sfsyscall2( int, ustat, dev_t, dev, struct ustat *, ubuf )
169 static inline _sfsyscall2( int, statfs, const char *, path, struct statfs *, buf )
170 static inline _sfsyscall2( int, fstatfs, int, fd, struct statfs *, buf )
171 static inline _sfsyscall3( int, sysfs, int, option, unsigned int, fs_index, char *, buf )
172 static inline _sfsyscall2( int, getpriority, int, which, int, who )
173 static inline _sfsyscall3( int, setpriority, int, which, int, who, int, prio )
176 // sched_setscheduler
178 static inline _sfsyscall1( int, sched_get_priority_max, int, policy )
179 static inline _sfsyscall1( int, sched_get_priority_min, int, policy )
181 static inline _sfsyscall2( int, mlock, const void *, addr, size_t, len )
182 static inline _sfsyscall2( int, munlock, const void *, addr, size_t, len )
183 static inline _sfsyscall1( int, mlockall, int, flags )
184 static inline _sfsyscall0( int, munlockall )
185 static inline _sfsyscall0( int, vhangup )
186 // modify_ldt
187 // pivot_root
188 // prctl
189 // arch_prctl
190 // adjtimex
191 // setrlimit
192 static inline _sfsyscall1( int, chroot, const char *, path )
193 static inline _sfsyscall0( int, sync )
194 static inline _sfsyscall1( int, acct, const char *, filename )
195 // settimeofday
196 // mount
197 // umount2
198 static inline _sfsyscall2( int, swapon, const char *, path, int, swapflags )
199 static inline _sfsyscall1( int, swapoff, const char *, path )
200 // reboot
201 static inline _sfsyscall2( int, sethostname, const char *, name, size_t, len )
202 static inline _sfsyscall2( int, setdomainname, const char *, name, size_t, len )
203 static inline _sfsyscall1( int, iopl, int, level )
204 static inline _sfsyscall3( int, ioperm, unsigned long, from, unsigned long, num, int, turn_on )
205 static inline _sfsyscall2( caddr_t, create_module, const char *, name, size_t, size )
206 static inline _sfsyscall2( int, init_module, const char *, name, struct module *, image )
207 static inline _sfsyscall1( int, delete_module, const char *, name )
208 static inline _sfsyscall1( int, get_kernel_syms, struct kernel_sym *, table )
209 // query_module
210 // quotactl
211 // nfsservctl
212 // getpmsg
213 // putpmsg
214 // afs_syscall
215 // tuxcall
216 // security
217 // gettid
218 // readahead
219 // setxattr
220 // lsetxattr
221 // fsetxattr
222 // getxattr
223 // lgetxattr
224 // fgetxattr
225 // listxattr
226 // llistxattr
227 // flistxattr
228 // removexattr
229 // lremovexattr
230 // fremovexattr
231 // tkill
232 static inline _sfsyscall1( time_t, time, time_t *, t )
233 // futex
234 // sched_setaffinity
235 // sched_getaffinity
236 // set_thread_area
237 // io_setup
238 // io_destroy
239 // io_getevents
240 // io_submit
241 // io_cancel
242 // get_thread_area
243 // lookup_dcookie
244 // epoll_create
245 // epoll_ctl_old
246 // epoll_wait_old
247 // remap_file_pages
248 // getdents64
249 // set_tid_address
250 // restart_syscall
251 // semtimedop
252 // fadvise64
253 // timer_create
254 // timer_settime
255 // timer_gettime
256 // timer_getoverrun
257 // timer_delete
258 // clock_settime
259 // clock_gettime
260 // clock_getres
261 // clock_nanosleep
262 // exit_group
263 // epoll_wait
264 // epoll_ctl
265 // tgkill
266 // utimes
267 // vserver
268 // mbind
269 // set_mempolicy
270 // get_mempolicy
271 // mq_open
272 // mq_unlink
273 // mq_timedsend
274 // mq_timedreceive
275 // mq_notify
276 // mq_getsetattr
277 // kexec_load
278 // waitid
279 // add_key
280 // request_key
281 // keyctl
282 // ioprio_set
283 // ioprio_get
284 // inotify_init
285 // inotify_add_watch
286 // inotify_rm_watch
287 // migrate_pages
288 // openat
289 // mkdirat
290 // mknodat
291 // fchownat
292 // futimesat
293 // newfstatat
294 // unlinkat
295 // renameat
296 // linkat
297 // symlinkat
298 // readlinkat
299 // fchmodat
300 // faccessat
301 // pselect6
302 // ppoll
303 // unshare
304 // set_robust_list
305 // get_robust_list
306 // splice
307 // tee
308 // sync_file_range
309 // vmsplice
310 // move_pages
311 // utimensat
312 // getcpu
313 // epoll_pwait
314 // signalfd
315 // timerfd_create
316 // eventfd
317 // fallocate
318 // timerfd_settime
319 // timerfd_gettime
320 // accept4
321 // signalfd4
322 // eventfd2
323 // epoll_create1
324 // dup3
325 // pipe2
326 // inotify_init1
327 // preadv
328 // pwritev
329 
330 
331 //#include "../common/sfsocketcall.h"
332 
333 
334 #endif /* SFLIB_H */
#define mask()
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 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 nsems
Definition: sflib.h:118
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 recvfrom
Definition: sflib.h:44
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 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 listen
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 domain
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 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 bind
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 msg
Definition: sflib.h:87
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 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 semget
Definition: sflib.h:118
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 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 shmaddr
Definition: sflib.h:122
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 static offset struct stat static buf void long static basep static whence static length const void static len static semflg shmid
Definition: sflib.h:122
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 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 to
Definition: sflib.h:87
static static sync static getppid static getegid acct
Definition: sflib.h:60
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 socket
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 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 struct timeval struct timezone static tz const struct iovec static count static mode sendto
Definition: sflib.h:87
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 shmat
Definition: sflib.h:122
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 void static offset struct stat static buf void long static basep static whence static length const void static len key
Definition: sflib.h:118
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 my_addr
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 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 sockfd
Definition: sflib.h:79
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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 void static length char static len const struct iovec static count unsigned long static filedes static sched_yield static flags static oldfd static pause unsigned static seconds static protocol accept
Definition: sflib.h:75
static const void static count static fd struct stat static buf struct pollfd unsigned static timeout void static offset void static length char static len const struct iovec static count unsigned long static filedes _sfsyscall5(int, select, int, n, fd_set *, readfds, fd_set *, writefds, fd_set *, exceptfds, struct timeval *, timeout) static inline _sfsyscall0(int
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 const void static count static fd struct stat static buf struct pollfd unsigned static timeout void static offset void static length char static len const struct iovec static count unsigned long static filedes static sched_yield shmget
Definition: sflib.h:61
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 sops
Definition: sflib.h:97
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 _sfsyscall4(long, ptrace, int, request, pid_t, pid, void *, addr, void *, data) static inline _sfsyscall0(uid_t
static _sfsyscall6(ssize_t, sendto, int, s, const void *, msg, size_t, len, int, flags, const struct sockaddr *, to, socklen_t, tolen) static inline _sfsyscall6(ssize_t
static const void static count static fd struct stat static buf struct pollfd unsigned static timeout void static offset void static length _sfsyscall1(int, brk, void *, end_data_segment) static inline _sfsyscall4(int
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 const void static count static fd _sfsyscall2(int, stat, const char *, file_name, struct stat *, buf) static inline _sfsyscall2(int
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 semop
Definition: sflib.h:97
static const void static count static fd struct stat static buf struct pollfd unsigned static timeout void static offset void static length char static len const struct iovec static count unsigned long static filedes static sched_yield static flags static oldfd static pause unsigned static seconds _sfsyscall0(pid_t, getpid) static inline _sfsyscall3(int
static _sfsyscall3(ssize_t, read, int, fd, void *, buf, size_t, count) static inline _sfsyscall3(ssize_t
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
static const void static count static fd struct stat static buf struct pollfd unsigned static timeout void static offset void static length char static len const struct iovec static count unsigned long static filedes static sched_yield static flags static oldfd static pause unsigned static seconds static protocol struct sockaddr addrlen
Definition: sflib.h:75
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 semid
Definition: sflib.h:97
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
unsigned int socklen_t
Definition: sftypes.h:219
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 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
static int level
Definition: vmenus.c:2424
int read(izstream &zs, T *x, Items items)
Definition: zstream.h:115