Go to file
Tomas Hruby 728f0f0c49 Removal of the system task
* Userspace change to use the new kernel calls

	- _taskcall(SYSTASK...) changed to _kernel_call(...)

	- int 32 reused for the kernel calls

	- _do_kernel_call() to make the trap to kernel

	- kernel_call() to make the actuall kernel call from C using
	  _do_kernel_call()

	- unlike ipc call the kernel call always succeeds as kernel is
	  always available, however, kernel may return an error

* Kernel side implementation of kernel calls

	- the SYSTEm task does not run, only the proc table entry is
	  preserved

	- every data_copy(SYSTEM is no data_copy(KERNEL

	- "locking" is an empty operation now as everything runs in
	  kernel

	- sys_task() is replaced by kernel_call() which copies the
	  message into kernel, dispatches the call to its handler and
	  finishes by either copying the results back to userspace (if
	  need be) or by suspending the process because of VM

	- suspended processes are later made runnable once the memory
	  issue is resolved, picked up by the scheduler and only at
	  this time the call is resumed (in fact restarted) which does
	  not need to copy the message from userspace as the message
	  is already saved in the process structure.

	- no ned for the vmrestart queue, the scheduler will restart
	  the system calls

	- no special case in do_vmctl(), all requests remove the
	  RTS_VMREQUEST flag
2010-02-09 15:20:09 +00:00
benchmarks only check local benchmark dir if it exists 2010-02-04 18:15:10 +00:00
boot Fixed a number of complaints about missing return statements. 2010-01-28 13:17:07 +00:00
commands gas2ack fix 2010-02-05 13:53:10 +00:00
docs Drivers and servers are simply known as services. 2009-12-17 01:53:26 +00:00
drivers Fix some incorrect testing of bit flags. 2010-02-02 12:24:35 +00:00
etc Import NetBSD's make 2010-02-04 16:52:54 +00:00
include Removal of the system task 2010-02-09 15:20:09 +00:00
kernel Removal of the system task 2010-02-09 15:20:09 +00:00
lib Removal of the system task 2010-02-09 15:20:09 +00:00
man Fixes in mkdep.1, suggested by Greg King 2010-02-05 13:07:08 +00:00
servers Fixes for truncate system calls: 2010-02-09 08:12:37 +00:00
test Fixes for truncate system calls: 2010-02-09 08:12:37 +00:00
tools bump version number to 3.1.6, copyright year to 2010. 2010-01-27 16:19:50 +00:00
LICENSE Fix parameter parsing in cut 2010-01-21 10:16:05 +00:00
Makefile Removal of the executable flag from files that cannot be executed 2009-11-09 10:26:00 +00:00