Expand description
This module supports all the 64 bit arch syscalls
Functions§
- accept⚠
- bind⚠
- brk⚠
- chdir⚠
- chmod⚠
- chown⚠
- close⚠
- close() closes a file descriptor, so that it no longer refers to
any file and may be reused.
- connect⚠
- creat⚠
- execve⚠
- exit⚠
- fchdir⚠
- fchmod⚠
- fcntl⚠
- fdatasync⚠
- flock⚠
- fork⚠
- fsync⚠
- ftruncate⚠
- getcwd⚠
- getegid⚠
- geteuid⚠
- getgid⚠
- getpgrp⚠
- getpid⚠
- getpid() returns the process ID (PID) of the calling process.
(This is often used by routines that generate unique temporary
filenames.)
- getppid⚠
- getuid⚠
- kill⚠
- link⚠
- listen⚠
- lseek⚠
- mkdir⚠
- mmap⚠
- mount⚠
- mprotect⚠
- munmap⚠
- newfstat⚠
- newlstat⚠
- newstat⚠
- open⚠
- The open() system call opens the file specified by pathname. If
the specified file does not exist, it may optionally (if O_CREAT
is specified in flags) be created by open().
- poll⚠
- read⚠
- read() attempts to read up to count bytes from file descriptor fd
into the buffer starting at buf.
- readlink⚠
- rename⚠
- rmdir⚠
- setgid⚠
- setpgid⚠
- setsid⚠
- setuid⚠
- socket⚠
- swapoff⚠
- swapon⚠
- symlink⚠
- syslog⚠
- truncate⚠
- umask⚠
- umount⚠
- unlink⚠
- vfork⚠
- write⚠
- write() writes up to count bytes from the buffer starting at buf
to the file referred to by the file descriptor fd.