summaryrefslogtreecommitdiff
path: root/Libraries/LibC/unistd.cpp
AgeCommit message (Expand)Author
2020-02-10Kernel+LibC: Merge sys$stat() and sys$lstat()Andreas Kling
2020-02-03LibC: Implement getsid()Sergey Bugaev
2020-02-03LibC: Move waitpid() to sys/wait.hSergey Bugaev
2020-02-01LibC: The exec() family of functions should not search "." by defaultAndreas Kling
2020-01-20Kernel: Add a basic implementation of unveil()Andreas Kling
2020-01-18Meta: Add license header to source filesAndreas Kling
2020-01-12Kernel+LibC: Allow passing mount flags to chroot()Sergey Bugaev
2020-01-11Kernel: Add pledge() syscall :^)Andreas Kling
2020-01-11Kernel+LibC: Add support for mount flagsSergey Bugaev
2020-01-11Kernel: Pass a parameter struct to mount()Andreas Kling
2020-01-11Kernel: Pass a parameter struct to symlink()Andreas Kling
2020-01-11Kernel: Pass a parameter struct to mknod()Andreas Kling
2020-01-11Kernel: Pass a parameter struct to chown()Andreas Kling
2020-01-10Kernel: Add a basic chroot() syscall :^)Andreas Kling
2020-01-10Kernel: Pass characters+length to link()Andreas Kling
2020-01-10Kernel: Rename Syscall::SyscallString => Syscall::StringArgumentAndreas Kling
2020-01-10Kernel: Pass characters+length to readlink()Andreas Kling
2020-01-10Kernel: Enable SMAP protection during the execve() syscallAndreas Kling
2020-01-09Kernel: Take path+length in the unlink() and umount() syscallsAndreas Kling
2020-01-08LibC: Don't leave /etc/passwd open in getlogin()Andreas Kling
2020-01-06LibC: Remove thread-specific TID cacheAndreas Kling
2020-01-06Kernel: Pass path+length to mkdir(), rmdir() and chmod()Andreas Kling
2020-01-06LibC: Make the syscall wrappers for stat/lstat/chdir return EFAULTAndreas Kling
2020-01-06Kernel: Make access() take path+lengthAndreas Kling
2020-01-05Kernel: Make chdir() take path+lengthAndreas Kling
2020-01-05Kernel: Pass path+length to the stat() and lstat() syscallsAndreas Kling
2020-01-04LibC: Fix broken setgroups() wrapperAndreas Kling
2020-01-03Kernel: Remove read_tsc() syscallAndreas Kling
2019-12-27LibC: Remove some functions we had two ofAndreas Kling
2019-12-01LibC: Added _PC_VDISABLE option to fpathconf()Brandon Scott
2019-11-17LibC: isatty() should return 1 for success, 0 for errorAndreas Kling
2019-11-17Kernel+LibC: Remove the isatty() syscallAndreas Kling
2019-11-17Kernel+LibPthread+LibC: Create secondary thread stacks in userspaceAndreas Kling
2019-11-16LibC: Move realpath() to <stdlib.h>Andreas Kling
2019-11-16LibC: Move the creat() and open() families to <fcntl.h>Andreas Kling
2019-11-16LibC: Added execlp method and new pathconf settingBrandon Scott
2019-11-14LibC: open/openat: Make sure path is not a nullptr before dereferencingTill Mayer
2019-11-13LibPthread: Start working on a POSIX threading libraryAndreas Kling
2019-11-10Kernel+LibC: Implement the openat() syscallAndreas Kling
2019-09-27LibC: realpath() should assume the buffer is PATH_MAX bytesAndreas Kling
2019-09-14LibC: Make gettid() cache the thread ID in thread-local-storageAndreas Kling
2019-09-13Kernel: Implement fchdir syscallMauri de Souza Nunes
2019-09-06AK: Rename <AK/AKString.h> to <AK/String.h>Andreas Kling
2019-09-02LibC: Support _PC_PATH_MAX in [f]pathconfConrad Pankoff
2019-08-25LibC: Add realpathRok Povsic
2019-08-17LibC: Implement wait()Sergey Bugaev
2019-08-17Kernel+LibC+Userland: Support mounting other kinds of filesystemsSergey Bugaev
2019-08-17Kernel: Added unmount ability to VFSJesse Buhagiar
2019-08-15Kernel+LibC: Add get_process_name() syscallAndreas Kling
2019-08-05Kernel+LibC: Support passing O_CLOEXEC to pipe()Sergey Bugaev