Changes between Version 5 and Version 6 of WikiStart


Ignore:
Timestamp:
Aug 3, 2014, 2:33:24 PM (10 years ago)
Author:
alain
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WikiStart

    v5 v6  
    77== Z) User Level Libraries ==
    88
    9 === __Peripheral Access__ ===
     9=== __[wiki:library_stdio stdio library]__ ===
    1010
    11 The [wiki:library_stdio  stdio] library contains allowing an application
    12 to access peripherals. All these functions contain at least one system call.
     11This library contains all functions allowing an application
     12to access a peripheral, or a protected processor register. Each function contains at least one system call.
    1313
    14 === __Utility Functions__ ===
     14=== __[wiki:library_stdlib stdlib library]===
    1515
    16 The [wiki:library_stdlib stdlib] library contains various utility functions.
    17 These functions do not use system calls.
     16This library contains various utility functions that do not use system calls.
    1817
    19 === __MWMR channels__ ===
     18=== __[wiki:library_mwmr MWMR library]__ ===
    2019
    21 The [wiki:library_mwmr mwmr_channel] library defines a communication middleware
     20This library defines a communication middleware
    2221supporting channelised communications in a multi-tasks parallel application.
     22This middleware does not use system calls.
    2323
    24 === __Synchonisation Barriers__ ===
     24=== __[wiki:library_barrier barrier library]__ ===
    2525
    26 The [wiki:library_barrier barrier] library contains functions used to synchronize
     26This library contains functions used to synchronize
    2727severals tasks in a multi-task parallel application. Most of these functions
    2828do not use system calls.
    2929
    30 === __Spin-Locks__ ===
     30=== __[wiki:library_locks spin_lock library]__ ===
    3131
    32 The [wiki:library_spin_lock spi4yyn_lock] library contains functions used to provide
     32This library contains functions used to provide
    3333exclusive access to a shared ressource in a multi-task parallel application.
    3434These functions do not use system calls.
    3535
    36 === __Memory Allocation__ ===
     36=== __[wiki:library_malloc malloc library]__ ===
    3737
    38 The [wiki:library_malloc malloc] library contains functions allowing an application
     38This library contains functions allowing an user application
    3939to dynamically allocate virtual memory in the application heap.
    40 These functions do not use system calls.