summaryrefslogtreecommitdiff
path: root/LibC
AgeCommit message (Expand)Author
2018-11-06Add sys_nerr and sys_errlist.Andreas Kling
2018-11-06Add umask().Andreas Kling
2018-11-06Add getppid().Andreas Kling
2018-11-06Change syscall naming scheme.Andreas Kling
2018-11-06Add sigset_t helper functions to LibC.Andreas Kling
2018-11-06Add some basic signal support.Andreas Kling
2018-11-05More work towards getting bash to build.Andreas Kling
2018-11-05More random compat hacking 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-05Add stub fflush().Andreas Kling
2018-11-05Tiny LibC things.Andreas Kling
2018-11-04Tidy up ELFLoader.Andreas Kling
2018-11-04Mark LibC's assertion faillure helper with __NORETURN.Andreas Kling
2018-11-03Share code between spawn() and exec() implementations.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-01Oops, fix null termination bug in getpwent().Andreas Kling
2018-11-01Waiters should be notified when a waitee is killed.Andreas Kling
2018-10-31perror() should send output to stderr.Andreas Kling
2018-10-31Add SpinLock to IDE disk access.Andreas Kling
2018-10-31Snazz up the kprintf() output a bit by giving it its own color.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-31Fix wrong allocation size used in opendir().Andreas Kling
2018-10-31Use ALWAYS_INLINE for ctype inlines.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-31Implement basic sys$kill() and add a /bin/killAndreas Kling
2018-10-31Minor cleanup.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-28Add sys$set_mmap_name and use it from LibC's malloc.Andreas Kling
2018-10-28Canonicalize the path used by sh.Andreas Kling
2018-10-27Add some basic field width support to printf().Andreas Kling
2018-10-27Implement loading of linked ELF executables.Andreas Kling
2018-10-27Implement waitpid() support for getting the waitee's exit code.Andreas Kling
2018-10-26Add sys$uname() and a /bin/uname utility.Andreas Kling
2018-10-26Implement sys$chdir() and teach sh+ls to cd around and browse different dirs.Andreas Kling
2018-10-26Add memcpy() and strcmp() to LibC.Andreas Kling
2018-10-26Implement argc/argv support for spawned tasks.Andreas Kling
2018-10-26Add sys$gethostname and /bin/hostnameAndreas Kling
2018-10-25Add gettimeofday() syscall and LibC wrappers gettimeofday() and time().Andreas Kling
2018-10-25Add a "sleep" syscall that sleeps for N seconds.Andreas Kling
2018-10-25Implement errno in LibC.Andreas Kling
2018-10-25ELFLoader should fail with an error message for unresolved symbols.Andreas Kling