-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdefinitions.txt
2550 lines (2085 loc) · 64.8 KB
/
definitions.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#####################################################################
# #
# This is an example output of the parse_syscall_definitions.py #
# program executed on a GNU/Linux 3.5.0-36-generic x86 machine. #
# July-17-2013 #
# #
#####################################################################
A total of 389 system call names were parsed.
List of system call names:
--------------------------
_llseek
_newselect
_sysctl
accept
accept4
access
acct
add_key
adjtimex
afs_syscall
alarm
alloc_hugepages
bdflush
bind
break
brk
cacheflush
capget
capset
chdir
chmod
chown
chown32
chroot
clock_adjtime
clock_getres
clock_gettime
clock_nanosleep
clock_settime
clone
close
connect
creat
create_module
delete_module
dup
dup2
dup3
epoll_create
epoll_create1
epoll_ctl
epoll_pwait
epoll_wait
eventfd
eventfd2
execve
exit
exit_group
faccessat
fadvise64
fadvise64_64
fallocate
fanotify_init
fanotify_mark
fchdir
fchmod
fchmodat
fchown
fchown32
fchownat
fcntl
fcntl64
fdatasync
fgetxattr
flistxattr
flock
fork
free_hugepages
fremovexattr
fsetxattr
fstat
fstat64
fstatat64
fstatfs
fstatfs64
fsync
ftime
ftruncate
ftruncate64
futex
futimesat
get_kernel_syms
get_mempolicy
get_robust_list
get_thread_area
getcpu
getcwd
getdents
getdents64
getegid
getegid32
geteuid
geteuid32
getgid
getgid32
getgroups
getgroups32
getitimer
getpeername
getpagesize
getpgid
getpgrp
getpid
getpmsg
getppid
getpriority
getresgid
getresgid32
getresuid
getresuid32
getrlimit
getrusage
getsid
getsockname
getsockopt
gettid
gettimeofday
getuid
getuid32
getxattr
gtty
idle
init_module
inotify_add_watch
inotify_init
inotify_init1
inotify_rm_watch
io_cancel
io_destroy
io_getevents
io_setup
io_submit
ioctl
ioperm
iopl
ioprio_get
ioprio_set
ipc
kexec_load
keyctl
kill
lchown
lchown32
lgetxattr
link
linkat
listen
listxattr
llistxattr
lock
lookup_dcookie
lremovexattr
lseek
lsetxattr
lstat
lstat64
madvise
madvise1
mbind
migrate_pages
mincore
mkdir
mkdirat
mknod
mknodat
mlock
mlockall
mmap
mmap2
modify_ldt
mount
move_pages
mprotect
mpx
mq_getsetattr
mq_notify
mq_open
mq_timedreceive
mq_timedsend
mq_unlink
mremap
msgctl
msgget
msgrcv
msgsnd
msync
munlock
munlockall
munmap
name_to_handle_at
nanosleep
nfsservctl
nice
oldfstat
oldlstat
oldolduname
oldstat
olduname
open
open_by_handle_at
openat
pause
pciconfig_iobase
pciconfig_read
pciconfig_write
perf_event_open
personality
phys
pipe
pipe2
pivot_root
poll
ppoll
prctl
pread64
preadv
prlimit
prof
profil
pselect6
ptrace
putpmsg
pwrite64
pwritev
query_module
quotactl
read
readahead
readdir
readlink
readlinkat
readv
reboot
recv
recvfrom
recvmsg
recvmmsg
remap_file_pages
removexattr
rename
renameat
request_key
restart_syscall
rmdir
rt_sigaction
rt_sigpending
rt_sigprocmask
rt_sigqueueinfo
rt_sigreturn
rt_sigsuspend
rt_sigtimedwait
rt_tgsigqueueinfo
sched_get_priority_max
sched_get_priority_min
sched_getaffinity
sched_getparam
sched_getscheduler
sched_rr_get_interval
sched_setaffinity
sched_setparam
sched_setscheduler
sched_yield
security
select
semctl
semget
semop
semtimedop
send
sendfile
sendfile64
sendmmsg
sendmsg
sendto
set_mempolicy
set_robust_list
set_thread_area
set_tid_address
set_zone_reclaim
setdomainname
setfsgid
setfsgid32
setfsuid
setfsuid32
setgid
setgid32
setgroups
setgroups32
sethostname
setitimer
setns
setpgid
setpriority
setregid
setregid32
setresgid
setresgid32
setresuid
setresuid32
setreuid
setreuid32
setrlimit
setsid
setsockopt
settimeofday
setuid
setuid32
setup
setxattr
sgetmask
shmat
shmctl
shmdt
shmget
shutdown
sigaction
sigaltstack
signal
signalfd
signalfd4
sigpending
sigprocmask
sigreturn
sigsuspend
socket
socketcall
socketpair
splice
spu_create
spu_run
ssetmask
stat
stat64
statfs
statfs64
stime
stty
subpage_prot
swapoff
swapon
symlink
symlinkat
sync
sync_file_range
sync_file_range2
syncfs
sysfs
sysinfo
syslog
tee
tgkill
time
timer_create
timer_delete
timer_getoverrun
timer_gettime
timer_settime
timerfd_create
timerfd_gettime
timerfd_settime
times
tkill
truncate
truncate64
tuxcall
ugetrlimit
ulimit
umask
umount
umount2
uname
unlink
unlinkat
unshare
uselib
ustat
utime
utimensat
utimes
vfork
vhangup
vm86old
vmsplice
vserver
wait4
waitid
waitpid
write
writev
List of system call definitions:
--------------------------------
Syscall Name: _llseek
Definition: int _llseek(unsigned int fd, unsigned long offset_high, unsigned long offset_low, loff_t *result, unsigned int whence)
Syscall Name: _newselect
Definition: Definition not found in man page.
Syscall Name: _sysctl
Definition: int _sysctl(struct __sysctl_args *args)
Syscall Name: accept
Definition: int accept(int sockfd, struct sockaddr *addr, socklen_t *addrlen)
Syscall Name: accept4
Definition: int accept4(int sockfd, struct sockaddr *addr, socklen_t *addrlen, int flags)
Syscall Name: access
Definition: int access(const char *pathname, int mode)
Syscall Name: acct
Definition: int acct(const char *filename)
Syscall Name: add_key
Definition: key_serial_t add_key(const char *type, const char *description, const void *payload, size_t plen, key_serial_t keyring)
Syscall Name: adjtimex
Definition: int adjtimex(struct timex *buf)
Syscall Name: afs_syscall
Definition: System call is Unimplemented
Syscall Name: alarm
Definition: unsigned int alarm(unsigned int seconds)
Syscall Name: alloc_hugepages
Definition: void* alloc_hugepages(int key, void *addr, size_t len, int prot, int flag)
Syscall Name: bdflush
Definition: int bdflush(int func, long *address)
Syscall Name: bind
Definition: int bind(int sockfd, const struct sockaddr *addr, socklen_t addrlen)
Syscall Name: break
Definition: System call is Unimplemented
Syscall Name: brk
Definition: int brk(void *addr)
Syscall Name: cacheflush
Definition: int cacheflush(char *addr, int nbytes, int cache)
Syscall Name: capget
Definition: int capget(cap_user_header_t hdrp, cap_user_data_t datap)
Syscall Name: capset
Definition: int capset(cap_user_header_t hdrp, const cap_user_data_t datap)
Syscall Name: chdir
Definition: int chdir(const char *path)
Syscall Name: chmod
Definition: int chmod(const char *path, mode_t mode)
Syscall Name: chown
Definition: int chown(const char *path, uid_t owner, gid_t group)
Syscall Name: chown32
Definition: int chown(const char *path, uid_t owner, gid_t group)
Syscall Name: chroot
Definition: int chroot(const char *path)
Syscall Name: clock_adjtime
Definition: No man entry found for this system call name.
Syscall Name: clock_getres
Definition: int clock_getres(clockid_t clk_id, struct timespec *res)
Syscall Name: clock_gettime
Definition: int clock_gettime(clockid_t clk_id, struct timespec *tp)
Syscall Name: clock_nanosleep
Definition: int clock_nanosleep(clockid_t clock_id, int flags, const struct timespec *request, struct timespec *remain)
Syscall Name: clock_settime
Definition: int clock_settime(clockid_t clk_id, const struct timespec *tp)
Syscall Name: clone
Definition: int clone(int (*fn)(void *), void *child_stack, int flags, void *arg, ...)
Syscall Name: close
Definition: int close(int fd)
Syscall Name: connect
Definition: int connect(int sockfd, const struct sockaddr *addr, socklen_t addrlen)
Syscall Name: creat
Definition: int creat(const char *pathname, mode_t mode)
Syscall Name: create_module
Definition: caddr_t create_module(const char *name, size_t size)
Syscall Name: delete_module
Definition: int delete_module(const char *name)
Syscall Name: dup
Definition: int dup(int oldfd)
Syscall Name: dup2
Definition: int dup2(int oldfd, int newfd)
Syscall Name: dup3
Definition: int dup3(int oldfd, int newfd, int flags)
Syscall Name: epoll_create
Definition: int epoll_create(int size)
Syscall Name: epoll_create1
Definition: int epoll_create1(int flags)
Syscall Name: epoll_ctl
Definition: int epoll_ctl(int epfd, int op, int fd, struct epoll_event *event)
Syscall Name: epoll_pwait
Definition: int epoll_pwait(int epfd, struct epoll_event *events, int maxevents, int timeout, const sigset_t *sigmask)
Syscall Name: epoll_wait
Definition: int epoll_wait(int epfd, struct epoll_event *events, int maxevents, int timeout)
Syscall Name: eventfd
Definition: int eventfd(unsigned int initval, int flags)
Syscall Name: eventfd2
Definition: int eventfd(unsigned int initval, int flags)
Syscall Name: execve
Definition: int execve(const char *filename, char *const argv[], char *const envp[])
Syscall Name: exit
Definition: void exit(int status)
Syscall Name: exit_group
Definition: void exit_group(int status)
Syscall Name: faccessat
Definition: int faccessat(int dirfd, const char *pathname, int mode, int flags)
Syscall Name: fadvise64
Definition: Definition not found in man page.
Syscall Name: fadvise64_64
Definition: Definition not found in man page.
Syscall Name: fallocate
Definition: int fallocate(int fd, int mode, off_t offset, off_t len)
Syscall Name: fanotify_init
Definition: No man entry found for this system call name.
Syscall Name: fanotify_mark
Definition: No man entry found for this system call name.
Syscall Name: fchdir
Definition: int fchdir(int fd)
Syscall Name: fchmod
Definition: int fchmod(int fd, mode_t mode)
Syscall Name: fchmodat
Definition: int fchmodat(int dirfd, const char *pathname, mode_t mode, int flags)
Syscall Name: fchown
Definition: int fchown(int fd, uid_t owner, gid_t group)
Syscall Name: fchown32
Definition: int fchown(int fd, uid_t owner, gid_t group)
Syscall Name: fchownat
Definition: int fchownat(int dirfd, const char *pathname, uid_t owner, gid_t group, int flags)
Syscall Name: fcntl
Definition: int fcntl(int fd, int cmd, ...)
Syscall Name: fcntl64
Definition: int fcntl(int fd, int cmd, ...)
Syscall Name: fdatasync
Definition: int fdatasync(int fd)
Syscall Name: fgetxattr
Definition: No man entry found for this system call name.
Syscall Name: flistxattr
Definition: No man entry found for this system call name.
Syscall Name: flock
Definition: int flock(int fd, int operation)
Syscall Name: fork
Definition: pid_t fork()
Syscall Name: free_hugepages
Definition: int free_hugepages(void *addr)
Syscall Name: fremovexattr
Definition: No man entry found for this system call name.
Syscall Name: fsetxattr
Definition: No man entry found for this system call name.
Syscall Name: fstat
Definition: int fstat(int fd, struct stat *buf)
Syscall Name: fstat64
Definition: int fstat(int fd, struct stat *buf)
Syscall Name: fstatat64
Definition: int fstatat(int dirfd, const char *pathname, struct stat *buf, int flags)
Syscall Name: fstatfs
Definition: int fstatfs(int fd, struct statfs *buf)
Syscall Name: fstatfs64
Definition: int fstatfs(int fd, struct statfs *buf)
Syscall Name: fsync
Definition: int fsync(int fd)
Syscall Name: ftime
Definition: System call is Unimplemented
Syscall Name: ftruncate
Definition: int ftruncate(int fd, off_t length)
Syscall Name: ftruncate64
Definition: int ftruncate(int fd, off_t length)
Syscall Name: futex
Definition: int futex(int *uaddr, int op, int val, const struct timespec *timeout, int *uaddr2, int val3)
Syscall Name: futimesat
Definition: int futimesat(int dirfd, const char *pathname, const struct timeval times[2])
Syscall Name: get_kernel_syms
Definition: int get_kernel_syms(struct kernel_sym *table)
Syscall Name: get_mempolicy
Definition: int get_mempolicy(int *mode, unsigned long *nodemask, unsigned long maxnode, unsigned long addr, unsigned long flags)
Syscall Name: get_robust_list
Definition: No man entry found for this system call name.
Syscall Name: get_thread_area
Definition: int get_thread_area(struct user_desc *u_info)
Syscall Name: getcpu
Definition: int getcpu(unsigned *cpu, unsigned *node, struct getcpu_cache *tcache)
Syscall Name: getcwd
Definition: char* getcwd(char *buf, size_t size)
Syscall Name: getdents
Definition: int getdents(unsigned int fd, struct linux_dirent *dirp, unsigned int count)
Syscall Name: getdents64
Definition: int getdents(unsigned int fd, struct linux_dirent *dirp, unsigned int count)
Syscall Name: getegid
Definition: gid_t getegid()
Syscall Name: getegid32
Definition: gid_t getegid()
Syscall Name: geteuid
Definition: uid_t geteuid()
Syscall Name: geteuid32
Definition: uid_t geteuid()
Syscall Name: getgid
Definition: gid_t getgid()
Syscall Name: getgid32
Definition: gid_t getgid()
Syscall Name: getgroups
Definition: int getgroups(int size, gid_t list[])
Syscall Name: getgroups32
Definition: int getgroups(int size, gid_t list[])
Syscall Name: getitimer
Definition: int getitimer(int which, struct itimerval *curr_value)
Syscall Name: getpeername
Definition: int getpeername(int sockfd, struct sockaddr *addr, socklen_t *addrlen)
Syscall Name: getpagesize
Definition: int getpagesize()
Syscall Name: getpgid
Definition: pid_t getpgid(pid_t pid)
Syscall Name: getpgrp
Definition: pid_t getpgrp(pid_t pid)
Syscall Name: getpid
Definition: pid_t getpid()
Syscall Name: getpmsg
Definition: System call is Unimplemented
Syscall Name: getppid
Definition: pid_t getppid()
Syscall Name: getpriority
Definition: int getpriority(int which, int who)
Syscall Name: getresgid
Definition: int getresgid(gid_t *rgid, gid_t *egid, gid_t *sgid)
Syscall Name: getresgid32
Definition: int getresgid(gid_t *rgid, gid_t *egid, gid_t *sgid)
Syscall Name: getresuid
Definition: int getresuid(uid_t *ruid, uid_t *euid, uid_t *suid)
Syscall Name: getresuid32
Definition: int getresuid(uid_t *ruid, uid_t *euid, uid_t *suid)
Syscall Name: getrlimit
Definition: int getrlimit(int resource, struct rlimit *rlim)
Syscall Name: getrusage
Definition: int getrusage(int who, struct rusage *usage)
Syscall Name: getsid
Definition: pid_t getsid(pid_t pid)
Syscall Name: getsockname
Definition: int getsockname(int sockfd, struct sockaddr *addr, socklen_t *addrlen)
Syscall Name: getsockopt
Definition: int getsockopt(int sockfd, int level, int optname, void *optval, socklen_t *optlen)
Syscall Name: gettid
Definition: pid_t gettid()
Syscall Name: gettimeofday
Definition: int gettimeofday(struct timeval *tv, struct timezone *tz)
Syscall Name: getuid
Definition: uid_t getuid()
Syscall Name: getuid32
Definition: uid_t getuid()
Syscall Name: getxattr
Definition: No man entry found for this system call name.
Syscall Name: gtty
Definition: System call is Unimplemented
Syscall Name: idle
Definition: int idle()
Syscall Name: init_module
Definition: int init_module(const char *name, struct module *image)
Syscall Name: inotify_add_watch
Definition: int inotify_add_watch(int fd, const char *pathname, uint32_t mask)
Syscall Name: inotify_init
Definition: int inotify_init()
Syscall Name: inotify_init1
Definition: int inotify_init1(int flags)
Syscall Name: inotify_rm_watch
Definition: int inotify_rm_watch(int fd, int wd)
Syscall Name: io_cancel
Definition: int io_cancel(aio_context_t ctx_id, struct iocb *iocb, struct io_event *result)
Syscall Name: io_destroy
Definition: int io_destroy(aio_context_t ctx)
Syscall Name: io_getevents
Definition: int io_getevents(aio_context_t ctx_id, long min_nr, long nr, struct io_event *events, struct timespec *timeout)
Syscall Name: io_setup
Definition: int io_setup(unsigned nr_events, aio_context_t *ctxp)
Syscall Name: io_submit
Definition: int io_submit(aio_context_t ctx_id, long nr, struct iocb **iocbpp)
Syscall Name: ioctl
Definition: int ioctl(int d, int request, ...)
Syscall Name: ioperm
Definition: int ioperm(unsigned long from, unsigned long num, int turn_on)
Syscall Name: iopl
Definition: int iopl(int level)
Syscall Name: ioprio_get
Definition: int ioprio_get(int which, int who)
Syscall Name: ioprio_set
Definition: int ioprio_set(int which, int who, int ioprio)
Syscall Name: ipc
Definition: int ipc(unsigned int call, int first, int second, int third, void *ptr, long fifth)
Syscall Name: kexec_load
Definition: long kexec_load(unsigned long entry, unsigned long nr_segments, struct kexec_segment *segments, unsigned long flags)
Syscall Name: keyctl
Definition: long keyctl(int cmd, ...)
Syscall Name: kill
Definition: int kill(pid_t pid, int sig)
Syscall Name: lchown
Definition: int lchown(const char *path, uid_t owner, gid_t group)
Syscall Name: lchown32
Definition: int lchown(const char *path, uid_t owner, gid_t group)
Syscall Name: lgetxattr
Definition: No man entry found for this system call name.
Syscall Name: link
Definition: int link(const char *oldpath, const char *newpath)
Syscall Name: linkat
Definition: int linkat(int olddirfd, const char *oldpath, int newdirfd, const char *newpath, int flags)
Syscall Name: listen
Definition: int listen(int sockfd, int backlog)
Syscall Name: listxattr
Definition: No man entry found for this system call name.
Syscall Name: llistxattr
Definition: No man entry found for this system call name.
Syscall Name: lock
Definition: System call is Unimplemented
Syscall Name: lookup_dcookie
Definition: int lookup_dcookie(u64 cookie, char *buffer, size_t len)
Syscall Name: lremovexattr
Definition: No man entry found for this system call name.
Syscall Name: lseek
Definition: off_t lseek(int fd, off_t offset, int whence)
Syscall Name: lsetxattr
Definition: No man entry found for this system call name.
Syscall Name: lstat
Definition: int lstat(const char *path, struct stat *buf)
Syscall Name: lstat64
Definition: int lstat(const char *path, struct stat *buf)
Syscall Name: madvise
Definition: int madvise(void *addr, size_t length, int advice)
Syscall Name: madvise1
Definition: System call is Unimplemented
Syscall Name: mbind
Definition: int mbind(void *addr, unsigned long len, int mode, unsigned long *nodemask, unsigned long maxnode, unsigned flags)
Syscall Name: migrate_pages
Definition: long migrate_pages(int pid, unsigned long maxnode, const unsigned long *old_nodes, const unsigned long *new_nodes)
Syscall Name: mincore
Definition: int mincore(void *addr, size_t length, unsigned char *vec)
Syscall Name: mkdir
Definition: int mkdir(const char *pathname, mode_t mode)
Syscall Name: mkdirat
Definition: int mkdirat(int dirfd, const char *pathname, mode_t mode)
Syscall Name: mknod
Definition: int mknod(const char *pathname, mode_t mode, dev_t dev)
Syscall Name: mknodat
Definition: int mknodat(int dirfd, const char *pathname, mode_t mode, dev_t dev)
Syscall Name: mlock
Definition: int mlock(const void *addr, size_t len)
Syscall Name: mlockall
Definition: int mlockall(int flags)
Syscall Name: mmap
Definition: void* mmap(void *addr, size_t length, int prot, int flags, int fd, off_t offset)
Syscall Name: mmap2
Definition: void* mmap2(void *addr, size_t length, int prot, int flags, int fd, off_t pgoffset)
Syscall Name: modify_ldt
Definition: int modify_ldt(int func, void *ptr, unsigned long bytecount)
Syscall Name: mount
Definition: int mount(const char *source, const char *target, const char *filesystemtype, unsigned long mountflags, const void *data)
Syscall Name: move_pages
Definition: long move_pages(int pid, unsigned long count, void **pages, const int *nodes, int *status, int flags)
Syscall Name: mprotect
Definition: int mprotect(const void *addr, size_t len, int prot)
Syscall Name: mpx
Definition: System call is Unimplemented
Syscall Name: mq_getsetattr
Definition: int mq_getsetattr(mqd_t mqdes, struct mq_attr *newattr, struct mq_attr *oldattr)
Syscall Name: mq_notify
Definition: int mq_notify(mqd_t mqdes, const struct sigevent *sevp)
Syscall Name: mq_open
Definition: mqd_t mq_open(const char *name, int oflag, mode_t mode, struct mq_attr *attr)
Syscall Name: mq_timedreceive
Definition: ssize_t mq_timedreceive(mqd_t mqdes, char *msg_ptr, size_t msg_len, unsigned *msg_prio, const struct timespec *abs_timeout)
Syscall Name: mq_timedsend
Definition: int mq_timedsend(mqd_t mqdes, const char *msg_ptr, size_t msg_len, unsigned msg_prio, const struct timespec *abs_timeout)
Syscall Name: mq_unlink
Definition: int mq_unlink(const char *name)
Syscall Name: mremap
Definition: void* mremap(void *old_address, size_t old_size, size_t new_size, int flags, ...)
Syscall Name: msgctl
Definition: int msgctl(int msqid, int cmd, struct msqid_ds *buf)
Syscall Name: msgget
Definition: int msgget(key_t key, int msgflg)
Syscall Name: msgrcv
Definition: ssize_t msgrcv(int msqid, void *msgp, size_t msgsz, long msgtyp, int msgflg)
Syscall Name: msgsnd
Definition: int msgsnd(int msqid, const void *msgp, size_t msgsz, int msgflg)
Syscall Name: msync
Definition: int msync(void *addr, size_t length, int flags)
Syscall Name: munlock
Definition: int munlock(const void *addr, size_t len)
Syscall Name: munlockall
Definition: int munlockall()
Syscall Name: munmap
Definition: int munmap(void *addr, size_t length)
Syscall Name: name_to_handle_at
Definition: No man entry found for this system call name.
Syscall Name: nanosleep
Definition: int nanosleep(const struct timespec *req, struct timespec *rem)
Syscall Name: nfsservctl
Definition: long nfsservctl(int cmd, struct nfsctl_arg *argp, union nfsctl_res *resp)
Syscall Name: nice
Definition: int nice(int inc)
Syscall Name: oldfstat
Definition: Definition not found in man page.
Syscall Name: oldlstat
Definition: Definition not found in man page.
Syscall Name: oldolduname
Definition: Definition not found in man page.
Syscall Name: oldstat
Definition: Definition not found in man page.
Syscall Name: olduname
Definition: Definition not found in man page.