Changes between Version 3 and Version 4 of WikiStart


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

--

Legend:

Unmodified
Added
Removed
Modified
  • WikiStart

    v3 v4  
    99=== Peripheral Access ===
    1010
    11 The [wiki:library_stdio  stdio library] contains allowing an application
     11The [wiki:library_stdio  stdio] library contains allowing an application
    1212to access peripherals. All these functions contain at least one system call.
    1313
    1414=== Utility Functions ===
    1515
    16 The [wiki:library_stdlib stdlib library] contains various utility functions.
     16The [wiki:library_stdlib stdlib] library contains various utility functions.
    1717These functions do not use system calls.
    1818
    1919=== MWMR channels ===
    2020
    21 The [wiki:library_mwmr mwmr_channel library] defines a communication middleware
     21The [wiki:library_mwmr mwmr_channel] library defines a communication middleware
    2222supporting channelised communications in a multi-tasks parallel application.
     23
     24=== Synchonisation Barriers ===
     25
     26The [wiki:library_barrier barrier] library contains functions used to synchronize
     27severals tasks in a multi-task parallel application. Most of these functions
     28do not use system calls.
     29
     30=== Spin-Locks ===
     31
     32The [wiki:library_spin_lock spi4yyn_lock] library contains functions used to provide
     33exclusive access to a shared ressource in a multi-task parallel application.
     34These functions do not use system calls.
     35
     36=== Memory Allocation ===
     37
     38The [wiki:library_malloc malloc] library contains functions allowing an application
     39to dynamically allocate virtual memory in the application heap.
     40These functions do not use system calls.