sortix-mirror/sortix
Jonas 'Sortie' Termansen 2afe9d1fd6 Implemented the fork() system call and what it needed to work properly.
This commit got completely out of control.

Added the fork(), getpid(), getppid(), sleep(), usleep() system calls, and
aliases in the Maxsi:: namespace.

Fixed a bug where zero-byte allocation would fail.

Worked on the DescriptorTable class which now works and can fork.

Got rid of some massive print-registers statements and replaced them with
the portable InterruptRegisters::LogRegisters() function.

Removed the SysExecuteOld function and replaced it with Process::Execute().

Rewrote the boot sequence in kernel.cpp such that it now loads the system
idle process 'idle' as PID 0, and the initization process 'init' as PID 1.

Rewrote the SIGINT hack.

Processes now maintain a family-tree structure and keep track of their
threads. PIDs are now allocated using a simple hack. Virtual memory
per-process can now be allocated using a simple hack. Processes can now be
forked. Fixed the Process::Execute function such that it now resets the
stack pointer to where the stack actually is - not just a magic value.
Removed the old and ugly Process::_endcodesection hack.

Rewrote the scheduler into a much cleaner and faster version. Debug code is
now moved to designated functions. The noop kernel-thread has been replaced
by a simple user-space infinite-loop program 'idle'.

The Thread class has been seperated from the Scheduler except in Scheduler-
related code. Thread::{Save,Load}Registers has been improved and has been
moved to $(CPU)/thread.cpp. Threads can now be forked. A new CreateThread
function creates threads properly and portably.

Added a MicrosecondsSinceBoot() function.

Fixed a crucial bug in MemoryManagement::Fork().

Added an 'idle' user-space program that is a noop infinite loop, which is
used by the scheduler when there is nothing to do.

Rewrote the 'init' program such that it now forks off a shell, instead of
becoming the shell.

Added the $$ (current PID) and $PPID (parent PPID) variables to the shell.
2011-11-01 01:00:20 +01:00
..
x64 Ported the GDT and TSS to x64. 2011-10-10 01:16:36 +02:00
x86 Implemented the fork() system call and what it needed to work properly. 2011-11-01 01:00:20 +01:00
x86-family Implemented the fork() system call and what it needed to work properly. 2011-11-01 01:00:20 +01:00
.gitignore Restored support for JSSortix using very ugly hacks. :( 2011-09-08 11:10:41 +02:00
Makefile Implemented the fork() system call and what it needed to work properly. 2011-11-01 01:00:20 +01:00
bits.h Initial version of Sortix. 2011-08-05 14:25:00 +02:00
descriptor_tables.cpp Ported kernel to new syscall API and started cleaning up the old one. 2011-10-27 00:20:28 +02:00
descriptor_tables.h Ported the GDT and TSS to x64. 2011-10-10 01:16:36 +02:00
descriptors.cpp Implemented the fork() system call and what it needed to work properly. 2011-11-01 01:00:20 +01:00
descriptors.h Implemented the fork() system call and what it needed to work properly. 2011-11-01 01:00:20 +01:00
device.cpp Sortix now uses the Device class. 2011-08-08 15:20:08 +02:00
device.h Sortix now uses the Device class. 2011-08-08 15:20:08 +02:00
elf.cpp Fixes to memory management that helps me sleep at night. 2011-10-10 17:22:03 +02:00
elf.h Processes now remember the memory segments it has loaded. 2011-08-27 16:46:00 +02:00
filesystem.cpp Initial version of Sortix. 2011-08-05 14:25:00 +02:00
filesystem.h Initial version of Sortix. 2011-08-05 14:25:00 +02:00
initrd.cpp Ported kernel to new syscall API and started cleaning up the old one. 2011-10-27 00:20:28 +02:00
initrd.h Ported kernel to new syscall API and started cleaning up the old one. 2011-10-27 00:20:28 +02:00
interrupt.cpp Implemented the fork() system call and what it needed to work properly. 2011-11-01 01:00:20 +01:00
interrupt.h Refactored interrupt system and got rid of old not-mine code. 2011-09-07 18:45:07 +02:00
kernel.cpp Implemented the fork() system call and what it needed to work properly. 2011-11-01 01:00:20 +01:00
keyboard.cpp Implemented the fork() system call and what it needed to work properly. 2011-11-01 01:00:20 +01:00
keyboard.h Ported kernel to new syscall API and started cleaning up the old one. 2011-10-27 00:20:28 +02:00
log.cpp Ported kernel to new syscall API and started cleaning up the old one. 2011-10-27 00:20:28 +02:00
log.h Removed lots of deprecated suff! 2011-09-06 19:51:47 +02:00
memorymanagement.h Fixed two very nasty bugs in the x86 memory management code. 2011-10-20 03:52:08 +02:00
mount.cpp Initial version of Sortix. 2011-08-05 14:25:00 +02:00
mount.h Initial version of Sortix. 2011-08-05 14:25:00 +02:00
multiboot.h Initial version of Sortix. 2011-08-05 14:25:00 +02:00
mxfs.cpp Initial version of Sortix. 2011-08-05 14:25:00 +02:00
mxfs.h Initial version of Sortix. 2011-08-05 14:25:00 +02:00
panic.cpp Added a friendly message on panic, and SIGSEGV no longer panics. 2011-09-07 17:48:01 +02:00
panic.h Initial version of Sortix. 2011-08-05 14:25:00 +02:00
pci.cpp Removed lots of deprecated suff! 2011-09-06 19:51:47 +02:00
pci.h Initial version of Sortix. 2011-08-05 14:25:00 +02:00
platform.h Initial version of Sortix. 2011-08-05 14:25:00 +02:00
process.cpp Implemented the fork() system call and what it needed to work properly. 2011-11-01 01:00:20 +01:00
process.h Implemented the fork() system call and what it needed to work properly. 2011-11-01 01:00:20 +01:00
scheduler.cpp Implemented the fork() system call and what it needed to work properly. 2011-11-01 01:00:20 +01:00
scheduler.h Implemented the fork() system call and what it needed to work properly. 2011-11-01 01:00:20 +01:00
serialterminal.cpp Restored support for JSSortix using very ugly hacks. :( 2011-09-08 11:10:41 +02:00
serialterminal.h Initial version of Sortix. 2011-08-05 14:25:00 +02:00
sound.cpp Ported kernel to new syscall API and started cleaning up the old one. 2011-10-27 00:20:28 +02:00
sound.h Ported kernel to new syscall API and started cleaning up the old one. 2011-10-27 00:20:28 +02:00
stream.h Initial version of Sortix. 2011-08-05 14:25:00 +02:00
syscall.cpp Implemented the fork() system call and what it needed to work properly. 2011-11-01 01:00:20 +01:00
syscall.h Ported kernel to new syscall API and started cleaning up the old one. 2011-10-27 00:20:28 +02:00
syscallnum.h Implemented the fork() system call and what it needed to work properly. 2011-11-01 01:00:20 +01:00
system.h Initial version of Sortix. 2011-08-05 14:25:00 +02:00
thread.cpp Implemented the fork() system call and what it needed to work properly. 2011-11-01 01:00:20 +01:00
thread.h Implemented the fork() system call and what it needed to work properly. 2011-11-01 01:00:20 +01:00
time.cpp Implemented the fork() system call and what it needed to work properly. 2011-11-01 01:00:20 +01:00
time.h Implemented the fork() system call and what it needed to work properly. 2011-11-01 01:00:20 +01:00
uart.cpp Restored support for JSSortix using very ugly hacks. :( 2011-09-08 11:10:41 +02:00
uart.h Initial version of Sortix. 2011-08-05 14:25:00 +02:00
user.h Initial version of Sortix. 2011-08-05 14:25:00 +02:00
vga.cpp Implemented the fork() system call and what it needed to work properly. 2011-11-01 01:00:20 +01:00
vga.h Ported kernel to new syscall API and started cleaning up the old one. 2011-10-27 00:20:28 +02:00
vgaterminal.cpp VGA Cursor code is now in vga.cpp. 2011-08-23 21:02:15 +02:00
vgaterminal.h Initial version of Sortix. 2011-08-05 14:25:00 +02:00