Changes between Version 3 and Version 4 of WikiStart
- Timestamp:
- Aug 3, 2014, 2:02:03 PM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WikiStart
v3 v4 9 9 === Peripheral Access === 10 10 11 The [wiki:library_stdio stdio library]contains allowing an application11 The [wiki:library_stdio stdio] library contains allowing an application 12 12 to access peripherals. All these functions contain at least one system call. 13 13 14 14 === Utility Functions === 15 15 16 The [wiki:library_stdlib stdlib library]contains various utility functions.16 The [wiki:library_stdlib stdlib] library contains various utility functions. 17 17 These functions do not use system calls. 18 18 19 19 === MWMR channels === 20 20 21 The [wiki:library_mwmr mwmr_channel library]defines a communication middleware21 The [wiki:library_mwmr mwmr_channel] library defines a communication middleware 22 22 supporting channelised communications in a multi-tasks parallel application. 23 24 === Synchonisation Barriers === 25 26 The [wiki:library_barrier barrier] library contains functions used to synchronize 27 severals tasks in a multi-task parallel application. Most of these functions 28 do not use system calls. 29 30 === Spin-Locks === 31 32 The [wiki:library_spin_lock spi4yyn_lock] library contains functions used to provide 33 exclusive access to a shared ressource in a multi-task parallel application. 34 These functions do not use system calls. 35 36 === Memory Allocation === 37 38 The [wiki:library_malloc malloc] library contains functions allowing an application 39 to dynamically allocate virtual memory in the application heap. 40 These functions do not use system calls.