libwallaby  v23
The wallaby standard library
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
Threading

Functions

VF EXPORT_SYM mutex mutex_create ()
 
VF EXPORT_SYM void mutex_lock (mutex m)
 
VF EXPORT_SYM int mutex_trylock (mutex m)
 
VF EXPORT_SYM void mutex_unlock (mutex m)
 
VF EXPORT_SYM void mutex_destroy (mutex m)
 
VF EXPORT_SYM thread thread_create (thread_function func)
 
VF EXPORT_SYM void thread_start (thread id)
 
VF EXPORT_SYM void thread_wait (thread id)
 
VF EXPORT_SYM void thread_destroy (thread id)
 

Detailed Description

Function Documentation

VF EXPORT_SYM mutex mutex_create ( )
VF EXPORT_SYM void mutex_destroy ( mutex  m)
VF EXPORT_SYM void mutex_lock ( mutex  m)
VF EXPORT_SYM int mutex_trylock ( mutex  m)
VF EXPORT_SYM void mutex_unlock ( mutex  m)
VF EXPORT_SYM thread thread_create ( thread_function  func)
VF EXPORT_SYM void thread_destroy ( thread  id)
VF EXPORT_SYM void thread_start ( thread  id)
VF EXPORT_SYM void thread_wait ( thread  id)