summaryrefslogtreecommitdiff
path: root/LibC/unistd.h
AgeCommit message (Expand)Author
2019-03-27LibC: Add creat(), execvp() resolution, and exec*() environment inheritance.Andreas Kling
2019-03-25LibGUI+Kernel: Add a GLock class (userspace mutex.)Andreas Kling
2019-03-24LibC: Add ftruncate() stub.Andreas Kling
2019-03-23Kernel+LibC: Add a simple create_thread() syscall.Andreas Kling
2019-03-14LibC: A whole bunch of compat work towards porting Lynx.Andreas Kling
2019-03-08Add a C++ helper class for working with shared buffers.Andreas Kling
2019-03-02Kernel+Userland: Add symlink() syscall and add "-s" flag to /bin/ln.Andreas Kling
2019-02-27Add chown() syscall and a simple /bin/chown program.Andreas Kling
2019-02-26Compat work towards making bash-5.0 build with less patches.Andreas Kling
2019-02-26More compat work.Andreas Kling
2019-02-23LibC: Enough compat work to make binutils-2.32 build and run.Andreas Kling
2019-02-21Kernel+Userland: Implement setuid() and setgid() and add /bin/suAndreas Kling
2019-02-16Kernel: Add a simple shared memory API for two processes only.Andreas Kling
2019-02-08LibC: Implement enough missing stuff to get bash-5.0 running. :^)Andreas Kling
2019-02-03Get nyancat nyanning in Serenity.Andreas Kling
2019-02-03LibC: Implement various things to get GNU bc building and running.Andreas Kling
2019-01-28Add support for removing directories.Andreas Kling
2019-01-25Terminal: Redraw entire line if any of its characters are dirty.Andreas Kling
2019-01-23LibC: Tweak execvp() and execve() prototypes.Andreas Kling
2019-01-23LibC: Add vsnprintf(), snprintf(), execvp() and abs().Andreas Kling
2018-12-20Add sync() syscall and a /bin/sync.Andreas Kling
2018-11-17Various stubs while trying to get an old coreutils to build.Andreas Kling
2018-11-17Make bash-2.05b build with minimal changes.Andreas Kling
2018-11-13Add close-on-exec flag for file descriptors.Andreas Kling
2018-11-11Add setvbuf(), setlinebuf(), setbuf().Andreas Kling
2018-11-11A bunch of compat work (mostly stubs but some real implementations, too.)Andreas Kling
2018-11-07Add some basic setgroups(), getgroups() and initgroups().Andreas Kling
2018-11-06Add getwd().Andreas Kling
2018-11-06Add strsignal() and improve sharing signal numbers between LibC and kernel.Andreas Kling
2018-11-05More work towards getting bash to build.Andreas Kling
2018-11-05Lots of minor compat stuff while seeing if bash would build.Andreas Kling
2018-11-05Add geteuid() and getegid().Andreas Kling
2018-11-05Tiny LibC things.Andreas Kling
2018-11-03Implemented sys$execve().Andreas Kling
2018-11-02Implement fork()!Andreas Kling
2018-11-02Basic ^C interrupt implementation.Andreas Kling
2018-11-02Add tcsetpgrp()+tcgetpgrp().Andreas Kling
2018-11-02Start working on sessions and process groups.Andreas Kling
2018-11-01Waiters should be notified when a waitee is killed.Andreas Kling
2018-10-31Add getpwent() family of functions to LibC.Andreas Kling
2018-10-31Enough compatibility work to make figlet build and run!Andreas Kling
2018-10-31More LibC portability work while trying to get figlet building.Andreas Kling
2018-10-31A bunch of LibC boilerplate stuff added while trying to get figlet to build.Andreas Kling
2018-10-30Add sys$ttyname_r and ttyname_r() + ttyname().Andreas Kling
2018-10-30Virtual consoles kinda work!Andreas Kling
2018-10-28Add basic symlink support.Andreas Kling
2018-10-27Implement waitpid() support for getting the waitee's exit code.Andreas Kling
2018-10-26Implement sys$chdir() and teach sh+ls to cd around and browse different dirs.Andreas Kling
2018-10-26Add sys$gethostname and /bin/hostnameAndreas Kling
2018-10-25Add a "sleep" syscall that sleeps for N seconds.Andreas Kling