Changes between Version 28 and Version 29 of WikiStart


Ignore:
Timestamp:
Oct 9, 2014, 1:13:44 PM (10 years ago)
Author:
alain
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WikiStart

    v28 v29  
    7474This section describe the kernel functions, supporting Interrupts, Exceptions and Traps (i.e. syscalls).
    7575
    76  === [wiki:kernel_interrupts W1) Interrupt Handler] ===
     76 === [wiki:kernel_interrupts Interrupt Handler] ===
    7777
    78  === [wiki:kernel_exceptions W2) Exception Handler] ===
     78 === [wiki:kernel_exceptions Exception Handler] ===
    7979
    80  === [wiki:kernel_syscalls W3) Syscall Handler] ===
     80 === [wiki:kernel_syscalls Syscall Handler] ===
    8181
    82  === [wiki:kernel_context W4) Context Switch Handler] ===
     82 === [wiki:kernel_context Context Switch Handler] ===
    8383
    8484== __Z) User level libraries__ ==
     
    9292Each function in this library contains at least one SYSCALL instruction to enter the kernel mode.
    9393
    94 === [wiki:library_stdlib Z2) stdlib library] ===
     94=== [wiki:library_stdlib  Stdlib user library] ===
    9595
    9696This library contains various utility functions that do not use system calls.
    9797
    98 === [wiki:library_mwmr Z3) MWMR library] ===
     98=== [wiki:library_mwmr  MWMR user library] ===
    9999
    100100This library defines a communication middleware
     
    102102This middleware does not use system calls.
    103103
    104 === [wiki:library_barrier Z4) barrier library] ===
     104=== [wiki:library_barrier Barrier user library] ===
    105105
    106106This library contains functions used to synchronize
     
    108108do not use system calls.
    109109
    110 === [wiki:library_locks Z5) spin_lock library] ===
     110=== [wiki:library_locks  Spin_lock user library] ===
    111111
    112112This library contains functions used to provide
     
    114114These functions do not use system calls.
    115115
    116 === [wiki:library_malloc Z6) malloc library] ===
     116=== [wiki:library_malloc  Malloc user library] ===
    117117
    118118This library contains functions allowing an user application