2005-04-21 16:53:53 +02:00
|
|
|
/* This file contains the table used to map system call numbers onto the
|
|
|
|
* routines that perform them.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define _TABLE
|
|
|
|
|
|
|
|
#include "fs.h"
|
|
|
|
#include <minix/callnr.h>
|
|
|
|
#include <minix/com.h>
|
|
|
|
#include "file.h"
|
|
|
|
#include "lock.h"
|
2012-02-13 16:28:04 +01:00
|
|
|
#include "scratchpad.h"
|
2006-10-25 15:40:36 +02:00
|
|
|
#include "vnode.h"
|
|
|
|
#include "vmnt.h"
|
|
|
|
|
2013-04-12 18:41:23 +02:00
|
|
|
int (*call_vec[])(message *m_out) = {
|
2005-04-21 16:53:53 +02:00
|
|
|
no_sys, /* 0 = unused */
|
2006-05-11 16:57:23 +02:00
|
|
|
no_sys, /* 1 = (exit) */
|
|
|
|
no_sys, /* 2 = (fork) */
|
2005-04-21 16:53:53 +02:00
|
|
|
do_read, /* 3 = read */
|
|
|
|
do_write, /* 4 = write */
|
|
|
|
do_open, /* 5 = open */
|
|
|
|
do_close, /* 6 = close */
|
|
|
|
no_sys, /* 7 = wait */
|
2013-03-07 16:55:22 +01:00
|
|
|
no_sys, /* 8 = unused */
|
2005-04-21 16:53:53 +02:00
|
|
|
do_link, /* 9 = link */
|
|
|
|
do_unlink, /* 10 = unlink */
|
|
|
|
no_sys, /* 11 = waitpid */
|
|
|
|
do_chdir, /* 12 = chdir */
|
2005-05-31 11:50:51 +02:00
|
|
|
no_sys, /* 13 = time */
|
2005-04-21 16:53:53 +02:00
|
|
|
do_mknod, /* 14 = mknod */
|
|
|
|
do_chmod, /* 15 = chmod */
|
|
|
|
do_chown, /* 16 = chown */
|
|
|
|
no_sys, /* 17 = break */
|
2013-02-28 15:44:23 +01:00
|
|
|
no_sys, /* 18 = unused (was old stat)*/
|
2013-08-31 23:11:34 +02:00
|
|
|
no_sys, /* 19 = unused */
|
2005-04-21 16:53:53 +02:00
|
|
|
no_sys, /* 20 = getpid */
|
|
|
|
do_mount, /* 21 = mount */
|
|
|
|
do_umount, /* 22 = umount */
|
2006-05-11 16:57:23 +02:00
|
|
|
no_sys, /* 23 = (setuid) */
|
2005-04-21 16:53:53 +02:00
|
|
|
no_sys, /* 24 = getuid */
|
2007-08-07 14:52:47 +02:00
|
|
|
no_sys, /* 25 = (stime) */
|
2005-04-21 16:53:53 +02:00
|
|
|
no_sys, /* 26 = ptrace */
|
|
|
|
no_sys, /* 27 = alarm */
|
2013-02-28 15:44:23 +01:00
|
|
|
no_sys, /* 28 = unused (was old fstat)*/
|
2005-04-21 16:53:53 +02:00
|
|
|
no_sys, /* 29 = pause */
|
|
|
|
do_utime, /* 30 = utime */
|
2012-02-13 16:28:04 +01:00
|
|
|
no_sys, /* 31 = (stty) */
|
|
|
|
no_sys, /* 32 = (gtty) */
|
2005-04-21 16:53:53 +02:00
|
|
|
do_access, /* 33 = access */
|
2012-02-13 16:28:04 +01:00
|
|
|
no_sys, /* 34 = (nice) */
|
|
|
|
no_sys, /* 35 = (ftime) */
|
2005-04-21 16:53:53 +02:00
|
|
|
do_sync, /* 36 = sync */
|
|
|
|
no_sys, /* 37 = kill */
|
|
|
|
do_rename, /* 38 = rename */
|
|
|
|
do_mkdir, /* 39 = mkdir */
|
|
|
|
do_unlink, /* 40 = rmdir */
|
2013-03-07 16:55:22 +01:00
|
|
|
no_sys, /* 41 = unused */
|
2005-04-21 16:53:53 +02:00
|
|
|
do_pipe, /* 42 = pipe */
|
2005-05-31 11:50:51 +02:00
|
|
|
no_sys, /* 43 = times */
|
2012-02-13 16:28:04 +01:00
|
|
|
no_sys, /* 44 = (prof) */
|
2005-12-20 15:23:44 +01:00
|
|
|
do_slink, /* 45 = symlink */
|
- Introduce support for sticky bit.
- Revise VFS-FS protocol and update VFS/MFS/ISOFS accordingly.
- Clean up MFS by removing old, dead code (backwards compatibility is broken by
the new VFS-FS protocol, anyway) and rewrite other parts. Also, make sure all
functions have proper banners and prototypes.
- VFS should always provide a (syntactically) valid path to the FS; no need for
the FS to do sanity checks when leaving/entering mount points.
- Fix several bugs in MFS:
- Several path lookup bugs in MFS.
- A link can be too big for the path buffer.
- A mountpoint can become inaccessible when the creation of a new inode
fails, because the inode already exists and is a mountpoint.
- Introduce support for supplemental groups.
- Add test 46 to test supplemental group functionality (and removed obsolete
suppl. tests from test 2).
- Clean up VFS (not everything is done yet).
- ISOFS now opens device read-only. This makes the -r flag in the mount command
unnecessary (but will still report to be mounted read-write).
- Introduce PipeFS. PipeFS is a new FS that handles all anonymous and
named pipes. However, named pipes still reside on the (M)FS, as they are part
of the file system on disk. To make this work VFS now has a concept of
'mapped' inodes, which causes read, write, truncate and stat requests to be
redirected to the mapped FS, and all other requests to the original FS.
2009-12-20 21:27:14 +01:00
|
|
|
no_sys, /* 46 = (setgid)*/
|
2005-04-21 16:53:53 +02:00
|
|
|
no_sys, /* 47 = getgid */
|
|
|
|
no_sys, /* 48 = (signal)*/
|
2005-12-20 15:23:44 +01:00
|
|
|
do_rdlink, /* 49 = readlink*/
|
2013-02-28 15:44:23 +01:00
|
|
|
no_sys, /* 50 = unused (was old lstat)*/
|
2012-01-13 00:49:37 +01:00
|
|
|
do_stat, /* 51 = stat */
|
|
|
|
do_fstat, /* 52 = fstat */
|
|
|
|
do_lstat, /* 53 = lstat */
|
2005-04-21 16:53:53 +02:00
|
|
|
do_ioctl, /* 54 = ioctl */
|
|
|
|
do_fcntl, /* 55 = fcntl */
|
2013-10-05 16:31:35 +02:00
|
|
|
do_copyfd, /* 56 = copyfd */
|
2012-02-13 16:28:04 +01:00
|
|
|
do_fsready, /* 57 = FS proc ready */
|
2013-02-25 15:45:22 +01:00
|
|
|
do_pipe2, /* 58 = pipe2 */
|
- Introduce support for sticky bit.
- Revise VFS-FS protocol and update VFS/MFS/ISOFS accordingly.
- Clean up MFS by removing old, dead code (backwards compatibility is broken by
the new VFS-FS protocol, anyway) and rewrite other parts. Also, make sure all
functions have proper banners and prototypes.
- VFS should always provide a (syntactically) valid path to the FS; no need for
the FS to do sanity checks when leaving/entering mount points.
- Fix several bugs in MFS:
- Several path lookup bugs in MFS.
- A link can be too big for the path buffer.
- A mountpoint can become inaccessible when the creation of a new inode
fails, because the inode already exists and is a mountpoint.
- Introduce support for supplemental groups.
- Add test 46 to test supplemental group functionality (and removed obsolete
suppl. tests from test 2).
- Clean up VFS (not everything is done yet).
- ISOFS now opens device read-only. This makes the -r flag in the mount command
unnecessary (but will still report to be mounted read-write).
- Introduce PipeFS. PipeFS is a new FS that handles all anonymous and
named pipes. However, named pipes still reside on the (M)FS, as they are part
of the file system on disk. To make this work VFS now has a concept of
'mapped' inodes, which causes read, write, truncate and stat requests to be
redirected to the mapped FS, and all other requests to the original FS.
2009-12-20 21:27:14 +01:00
|
|
|
no_sys, /* 59 = (execve)*/
|
2005-04-21 16:53:53 +02:00
|
|
|
do_umask, /* 60 = umask */
|
|
|
|
do_chroot, /* 61 = chroot */
|
- Introduce support for sticky bit.
- Revise VFS-FS protocol and update VFS/MFS/ISOFS accordingly.
- Clean up MFS by removing old, dead code (backwards compatibility is broken by
the new VFS-FS protocol, anyway) and rewrite other parts. Also, make sure all
functions have proper banners and prototypes.
- VFS should always provide a (syntactically) valid path to the FS; no need for
the FS to do sanity checks when leaving/entering mount points.
- Fix several bugs in MFS:
- Several path lookup bugs in MFS.
- A link can be too big for the path buffer.
- A mountpoint can become inaccessible when the creation of a new inode
fails, because the inode already exists and is a mountpoint.
- Introduce support for supplemental groups.
- Add test 46 to test supplemental group functionality (and removed obsolete
suppl. tests from test 2).
- Clean up VFS (not everything is done yet).
- ISOFS now opens device read-only. This makes the -r flag in the mount command
unnecessary (but will still report to be mounted read-write).
- Introduce PipeFS. PipeFS is a new FS that handles all anonymous and
named pipes. However, named pipes still reside on the (M)FS, as they are part
of the file system on disk. To make this work VFS now has a concept of
'mapped' inodes, which causes read, write, truncate and stat requests to be
redirected to the mapped FS, and all other requests to the original FS.
2009-12-20 21:27:14 +01:00
|
|
|
no_sys, /* 62 = (setsid)*/
|
|
|
|
no_sys, /* 63 = (getpgrp)*/
|
|
|
|
no_sys, /* 64 = (itimer)*/
|
2012-01-13 00:49:37 +01:00
|
|
|
do_stat, /* 65 = stat - badly numbered, being phased out */
|
|
|
|
do_fstat, /* 66 = fstat - badly numbered, being phased out */
|
|
|
|
do_lstat, /* 67 = lstat - badly numbered, being phased out */
|
2013-02-28 15:44:23 +01:00
|
|
|
no_sys, /* 68 = (setmcontext) */
|
2013-03-07 16:55:22 +01:00
|
|
|
do_getdents, /* 69 = getdents */
|
|
|
|
do_ftruncate, /* 70 = ftruncate */
|
2006-05-19 14:19:37 +02:00
|
|
|
no_sys, /* 71 = (sigaction) */
|
|
|
|
no_sys, /* 72 = (sigsuspend) */
|
|
|
|
no_sys, /* 73 = (sigpending) */
|
|
|
|
no_sys, /* 74 = (sigprocmask) */
|
|
|
|
no_sys, /* 75 = (sigreturn) */
|
2006-05-11 16:57:23 +02:00
|
|
|
no_sys, /* 76 = (reboot) */
|
2005-04-21 16:53:53 +02:00
|
|
|
do_svrctl, /* 77 = svrctl */
|
2006-05-19 14:19:37 +02:00
|
|
|
no_sys, /* 78 = (sysuname) */
|
2011-11-07 21:11:30 +01:00
|
|
|
no_sys, /* 79 = unused */
|
2013-08-31 23:11:34 +02:00
|
|
|
no_sys, /* 80 = unused */
|
2013-03-25 17:08:04 +01:00
|
|
|
do_lseek, /* 81 = llseek */
|
2013-08-20 01:39:47 +02:00
|
|
|
do_getvfsstat, /* 82 = getvfsstat */
|
2013-03-07 16:55:22 +01:00
|
|
|
do_statvfs, /* 83 = fstatvfs */
|
|
|
|
do_fstatvfs, /* 84 = statvfs */
|
2005-06-06 13:40:32 +02:00
|
|
|
do_select, /* 85 = select */
|
2005-06-29 21:28:26 +02:00
|
|
|
do_fchdir, /* 86 = fchdir */
|
2005-07-01 19:58:29 +02:00
|
|
|
do_fsync, /* 87 = fsync */
|
2006-05-19 14:19:37 +02:00
|
|
|
no_sys, /* 88 = (getpriority) */
|
|
|
|
no_sys, /* 89 = (setpriority) */
|
|
|
|
no_sys, /* 90 = (gettimeofday) */
|
|
|
|
no_sys, /* 91 = (seteuid) */
|
|
|
|
no_sys, /* 92 = (setegid) */
|
2013-08-31 23:11:34 +02:00
|
|
|
no_sys, /* 93 = unused */
|
|
|
|
no_sys, /* 94 = unused */
|
2006-04-18 13:26:04 +02:00
|
|
|
do_chmod, /* 95 = fchmod */
|
|
|
|
do_chown, /* 96 = fchown */
|
2013-03-07 16:55:22 +01:00
|
|
|
do_lseek, /* 97 = lseek */
|
2006-10-30 16:53:38 +01:00
|
|
|
no_sys, /* 98 = (sprofile) */
|
|
|
|
no_sys, /* 99 = (cprofile) */
|
No more intel/minix segments.
This commit removes all traces of Minix segments (the text/data/stack
memory map abstraction in the kernel) and significance of Intel segments
(hardware segments like CS, DS that add offsets to all addressing before
page table translation). This ultimately simplifies the memory layout
and addressing and makes the same layout possible on non-Intel
architectures.
There are only two types of addresses in the world now: virtual
and physical; even the kernel and processes have the same virtual
address space. Kernel and user processes can be distinguished at a
glance as processes won't use 0xF0000000 and above.
No static pre-allocated memory sizes exist any more.
Changes to booting:
. The pre_init.c leaves the kernel and modules exactly as
they were left by the bootloader in physical memory
. The kernel starts running using physical addressing,
loaded at a fixed location given in its linker script by the
bootloader. All code and data in this phase are linked to
this fixed low location.
. It makes a bootstrap pagetable to map itself to a
fixed high location (also in linker script) and jumps to
the high address. All code and data then use this high addressing.
. All code/data symbols linked at the low addresses is prefixed by
an objcopy step with __k_unpaged_*, so that that code cannot
reference highly-linked symbols (which aren't valid yet) or vice
versa (symbols that aren't valid any more).
. The two addressing modes are separated in the linker script by
collecting the unpaged_*.o objects and linking them with low
addresses, and linking the rest high. Some objects are linked
twice, once low and once high.
. The bootstrap phase passes a lot of information (e.g. free memory
list, physical location of the modules, etc.) using the kinfo
struct.
. After this bootstrap the low-linked part is freed.
. The kernel maps in VM into the bootstrap page table so that VM can
begin executing. Its first job is to make page tables for all other
boot processes. So VM runs before RS, and RS gets a fully dynamic,
VM-managed address space. VM gets its privilege info from RS as usual
but that happens after RS starts running.
. Both the kernel loading VM and VM organizing boot processes happen
using the libexec logic. This removes the last reason for VM to
still know much about exec() and vm/exec.c is gone.
Further Implementation:
. All segments are based at 0 and have a 4 GB limit.
. The kernel is mapped in at the top of the virtual address
space so as not to constrain the user processes.
. Processes do not use segments from the LDT at all; there are
no segments in the LDT any more, so no LLDT is needed.
. The Minix segments T/D/S are gone and so none of the
user-space or in-kernel copy functions use them. The copy
functions use a process endpoint of NONE to realize it's
a physical address, virtual otherwise.
. The umap call only makes sense to translate a virtual address
to a physical address now.
. Segments-related calls like newmap and alloc_segments are gone.
. All segments-related translation in VM is gone (vir2map etc).
. Initialization in VM is simpler as no moving around is necessary.
. VM and all other boot processes can be linked wherever they wish
and will be mapped in at the right location by the kernel and VM
respectively.
Other changes:
. The multiboot code is less special: it does not use mb_print
for its diagnostics any more but uses printf() as normal, saving
the output into the diagnostics buffer, only printing to the
screen using the direct print functions if a panic() occurs.
. The multiboot code uses the flexible 'free memory map list'
style to receive the list of free memory if available.
. The kernel determines the memory layout of the processes to
a degree: it tells VM where the kernel starts and ends and
where the kernel wants the top of the process to be. VM then
uses this entire range, i.e. the stack is right at the top,
and mmap()ped bits of memory are placed below that downwards,
and the break grows upwards.
Other Consequences:
. Every process gets its own page table as address spaces
can't be separated any more by segments.
. As all segments are 0-based, there is no distinction between
virtual and linear addresses, nor between userspace and
kernel addresses.
. Less work is done when context switching, leading to a net
performance increase. (8% faster on my machine for 'make servers'.)
. The layout and configuration of the GDT makes sysenter and syscall
possible.
2012-05-07 16:03:35 +02:00
|
|
|
no_sys, /* 100 = (newexec) */
|
New RS and new signal handling for system processes.
UPDATING INFO:
20100317:
/usr/src/etc/system.conf updated to ignore default kernel calls: copy
it (or merge it) to /etc/system.conf.
The hello driver (/dev/hello) added to the distribution:
# cd /usr/src/commands/scripts && make clean install
# cd /dev && MAKEDEV hello
KERNEL CHANGES:
- Generic signal handling support. The kernel no longer assumes PM as a signal
manager for every process. The signal manager of a given process can now be
specified in its privilege slot. When a signal has to be delivered, the kernel
performs the lookup and forwards the signal to the appropriate signal manager.
PM is the default signal manager for user processes, RS is the default signal
manager for system processes. To enable ptrace()ing for system processes, it
is sufficient to change the default signal manager to PM. This will temporarily
disable crash recovery, though.
- sys_exit() is now split into sys_exit() (i.e. exit() for system processes,
which generates a self-termination signal), and sys_clear() (i.e. used by PM
to ask the kernel to clear a process slot when a process exits).
- Added a new kernel call (i.e. sys_update()) to swap two process slots and
implement live update.
PM CHANGES:
- Posix signal handling is no longer allowed for system processes. System
signals are split into two fixed categories: termination and non-termination
signals. When a non-termination signaled is processed, PM transforms the signal
into an IPC message and delivers the message to the system process. When a
termination signal is processed, PM terminates the process.
- PM no longer assumes itself as the signal manager for system processes. It now
makes sure that every system signal goes through the kernel before being
actually processes. The kernel will then dispatch the signal to the appropriate
signal manager which may or may not be PM.
SYSLIB CHANGES:
- Simplified SEF init and LU callbacks.
- Added additional predefined SEF callbacks to debug crash recovery and
live update.
- Fixed a temporary ack in the SEF init protocol. SEF init reply is now
completely synchronous.
- Added SEF signal event type to provide a uniform interface for system
processes to deal with signals. A sef_cb_signal_handler() callback is
available for system processes to handle every received signal. A
sef_cb_signal_manager() callback is used by signal managers to process
system signals on behalf of the kernel.
- Fixed a few bugs with memory mapping and DS.
VM CHANGES:
- Page faults and memory requests coming from the kernel are now implemented
using signals.
- Added a new VM call to swap two process slots and implement live update.
- The call is used by RS at update time and in turn invokes the kernel call
sys_update().
RS CHANGES:
- RS has been reworked with a better functional decomposition.
- Better kernel call masks. com.h now defines the set of very basic kernel calls
every system service is allowed to use. This makes system.conf simpler and
easier to maintain. In addition, this guarantees a higher level of isolation
for system libraries that use one or more kernel calls internally (e.g. printf).
- RS is the default signal manager for system processes. By default, RS
intercepts every signal delivered to every system process. This makes crash
recovery possible before bringing PM and friends in the loop.
- RS now supports fast rollback when something goes wrong while initializing
the new version during a live update.
- Live update is now implemented by keeping the two versions side-by-side and
swapping the process slots when the old version is ready to update.
- Crash recovery is now implemented by keeping the two versions side-by-side
and cleaning up the old version only when the recovery process is complete.
DS CHANGES:
- Fixed a bug when the process doing ds_publish() or ds_delete() is not known
by DS.
- Fixed the completely broken support for strings. String publishing is now
implemented in the system library and simply wraps publishing of memory ranges.
Ideally, we should adopt a similar approach for other data types as well.
- Test suite fixed.
DRIVER CHANGES:
- The hello driver has been added to the Minix distribution to demonstrate basic
live update and crash recovery functionalities.
- Other drivers have been adapted to conform the new SEF interface.
2010-03-17 02:15:29 +01:00
|
|
|
no_sys, /* 101 = (srv_fork) */
|
2010-01-05 20:39:27 +01:00
|
|
|
no_sys, /* 102 = (exec_restart) */
|
2012-01-12 23:33:46 +01:00
|
|
|
no_sys, /* 103 = unused */
|
2010-01-05 20:39:27 +01:00
|
|
|
no_sys, /* 104 = (getprocnr) */
|
2008-02-22 15:51:38 +01:00
|
|
|
no_sys, /* 105 = unused */
|
|
|
|
no_sys, /* 106 = unused */
|
2010-01-05 20:39:27 +01:00
|
|
|
no_sys, /* 107 = (getepinfo) */
|
2011-12-24 15:02:54 +01:00
|
|
|
do_utimens, /* 108 = utimens */
|
2013-03-07 16:55:22 +01:00
|
|
|
do_fcntl, /* 109 = fcntl */
|
|
|
|
do_truncate, /* 110 = unused */
|
New RS and new signal handling for system processes.
UPDATING INFO:
20100317:
/usr/src/etc/system.conf updated to ignore default kernel calls: copy
it (or merge it) to /etc/system.conf.
The hello driver (/dev/hello) added to the distribution:
# cd /usr/src/commands/scripts && make clean install
# cd /dev && MAKEDEV hello
KERNEL CHANGES:
- Generic signal handling support. The kernel no longer assumes PM as a signal
manager for every process. The signal manager of a given process can now be
specified in its privilege slot. When a signal has to be delivered, the kernel
performs the lookup and forwards the signal to the appropriate signal manager.
PM is the default signal manager for user processes, RS is the default signal
manager for system processes. To enable ptrace()ing for system processes, it
is sufficient to change the default signal manager to PM. This will temporarily
disable crash recovery, though.
- sys_exit() is now split into sys_exit() (i.e. exit() for system processes,
which generates a self-termination signal), and sys_clear() (i.e. used by PM
to ask the kernel to clear a process slot when a process exits).
- Added a new kernel call (i.e. sys_update()) to swap two process slots and
implement live update.
PM CHANGES:
- Posix signal handling is no longer allowed for system processes. System
signals are split into two fixed categories: termination and non-termination
signals. When a non-termination signaled is processed, PM transforms the signal
into an IPC message and delivers the message to the system process. When a
termination signal is processed, PM terminates the process.
- PM no longer assumes itself as the signal manager for system processes. It now
makes sure that every system signal goes through the kernel before being
actually processes. The kernel will then dispatch the signal to the appropriate
signal manager which may or may not be PM.
SYSLIB CHANGES:
- Simplified SEF init and LU callbacks.
- Added additional predefined SEF callbacks to debug crash recovery and
live update.
- Fixed a temporary ack in the SEF init protocol. SEF init reply is now
completely synchronous.
- Added SEF signal event type to provide a uniform interface for system
processes to deal with signals. A sef_cb_signal_handler() callback is
available for system processes to handle every received signal. A
sef_cb_signal_manager() callback is used by signal managers to process
system signals on behalf of the kernel.
- Fixed a few bugs with memory mapping and DS.
VM CHANGES:
- Page faults and memory requests coming from the kernel are now implemented
using signals.
- Added a new VM call to swap two process slots and implement live update.
- The call is used by RS at update time and in turn invokes the kernel call
sys_update().
RS CHANGES:
- RS has been reworked with a better functional decomposition.
- Better kernel call masks. com.h now defines the set of very basic kernel calls
every system service is allowed to use. This makes system.conf simpler and
easier to maintain. In addition, this guarantees a higher level of isolation
for system libraries that use one or more kernel calls internally (e.g. printf).
- RS is the default signal manager for system processes. By default, RS
intercepts every signal delivered to every system process. This makes crash
recovery possible before bringing PM and friends in the loop.
- RS now supports fast rollback when something goes wrong while initializing
the new version during a live update.
- Live update is now implemented by keeping the two versions side-by-side and
swapping the process slots when the old version is ready to update.
- Crash recovery is now implemented by keeping the two versions side-by-side
and cleaning up the old version only when the recovery process is complete.
DS CHANGES:
- Fixed a bug when the process doing ds_publish() or ds_delete() is not known
by DS.
- Fixed the completely broken support for strings. String publishing is now
implemented in the system library and simply wraps publishing of memory ranges.
Ideally, we should adopt a similar approach for other data types as well.
- Test suite fixed.
DRIVER CHANGES:
- The hello driver has been added to the Minix distribution to demonstrate basic
live update and crash recovery functionalities.
- Other drivers have been adapted to conform the new SEF interface.
2010-03-17 02:15:29 +01:00
|
|
|
no_sys, /* 111 = (srv_kill) */
|
2010-08-25 15:06:43 +02:00
|
|
|
do_gcov_flush, /* 112 = gcov_flush */
|
2011-08-02 19:22:08 +02:00
|
|
|
no_sys, /* 113 = (getsid) */
|
2013-03-29 22:48:22 +01:00
|
|
|
no_sys, /* 114 = (clock_getres) */
|
|
|
|
no_sys, /* 115 = (clock_gettime) */
|
2013-03-30 17:59:21 +01:00
|
|
|
no_sys, /* 116 = (clock_settime) */
|
2013-05-07 14:41:07 +02:00
|
|
|
do_vm_call, /* 117 = call from vm */
|
2013-06-25 14:41:01 +02:00
|
|
|
no_sys, /* 118 = unsused */
|
|
|
|
no_sys, /* 119 = unsused */
|
|
|
|
no_sys, /* 120 = unsused */
|
|
|
|
no_sys, /* 121 = (task reply) */
|
2013-09-09 00:04:12 +02:00
|
|
|
do_mapdriver, /* 122 = mapdriver */
|
2013-06-25 14:41:01 +02:00
|
|
|
do_getrusage, /* 123 = getrusage */
|
2013-10-05 16:31:35 +02:00
|
|
|
do_checkperms, /* 124 = checkperms */
|
2005-04-21 16:53:53 +02:00
|
|
|
};
|
|
|
|
/* This should not fail with "array size is negative": */
|
|
|
|
extern int dummy[sizeof(call_vec) == NCALLS * sizeof(call_vec[0]) ? 1 : -1];
|