summaryrefslogtreecommitdiff
path: root/Kernel/Task.cpp
AgeCommit message (Expand)Author
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-27Use Unix::stat for sys$lstat().Andreas Kling
2018-10-27Add some basic address validation to syscalls.Andreas Kling
2018-10-27Greatly improve /proc/PID/stack by tracing the ebp frame chain.Andreas Kling
2018-10-26Add a very hackish /proc/PID/stack.Andreas Kling
2018-10-26Implement /proc/PID/vm.Andreas Kling
2018-10-26Add ASSERT_INTERRUPTS_DISABLED in Task::fromPID().Andreas Kling
2018-10-26Add sys$uname() and a /bin/uname utility.Andreas Kling
2018-10-26Add per-task limit for open fd's. Hard-coded at 16 for now.Andreas Kling
2018-10-26Implement sys$chdir() and teach sh+ls to cd around and browse different dirs.Andreas Kling
2018-10-26If spawning a task fails after we did a partial ELF load, remap current.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 a basic way for read() to block.Andreas Kling
2018-10-25If no context switch occurs, add 1 to the timesScheduled() for current.Andreas Kling
2018-10-25Implement errno in LibC.Andreas Kling
2018-10-25Unify the Task constructors.Andreas Kling
2018-10-25Remove age-old IPC stuff that wasn't working anyway.Andreas Kling
2018-10-25Add a few more InterruptDisablers.Andreas Kling
2018-10-25ELFLoader should fail with an error message for unresolved symbols.Andreas Kling
2018-10-24Add a "pwd" utility to userland.Andreas Kling
2018-10-24Add an lstat() syscall and use it to make "ls" nicer.Andreas Kling
2018-10-24Lots of hacking to make a very simple "ls" utility.Andreas Kling
2018-10-24Add an InterruptDisabler helper class and use that for kmalloc.Andreas Kling
2018-10-24Add simplified mmap() and munmap() syscalls.Andreas Kling
2018-10-24Make the kmalloc global stats variable volatile.Andreas Kling
2018-10-24Add a simplified waitpid() so that sh can wait on spawned commands.Andreas Kling
2018-10-23Generalize the SpinLock and move it to AK.Andreas Kling
2018-10-23Add an undertaker task that is responsible for destroying dead tasks.Andreas Kling
2018-10-23Various things:Andreas Kling
2018-10-23Generate a basic /proc/summary file with some info about all tasks.Andreas Kling
2018-10-23Start adding a basic /proc filesystem and a "ps" utility.Andreas Kling
2018-10-23Lots of hacking:Andreas Kling
2018-10-22Launching an arbitrary ELF executable from disk works! :^)Andreas Kling
2018-10-22Add getgid() and getpid() syscalls. Prep for LibC.Andreas Kling
2018-10-22Add a sys$exit and make init_stage2 call it when finished.Andreas Kling
2018-10-22A lot of hacking:Andreas Kling
2018-10-21Fix null deref in contextSwitch().Andreas Kling
2018-10-19Turn the syscall interrupt into a trap (by switching the gate type.)Andreas Kling
2018-10-18Add Regions concept to Task.Andreas Kling
2018-10-18More paging stuff.Andreas Kling
2018-10-18Use FileHandle from VFS.Andreas Kling
2018-10-18Actually destroy tasks after they crash.Andreas Kling
2018-10-17A userspace process can now GPF and the OS goes on!Andreas Kling