SRFI-21SRFI-21: Real-time Multithreading support
http://srfi.schemers.org/srfi-21/srfi-21.html
SRFI-21 is implemented in Gambit Gerbil
current-thread, thread?, make-thread,
thread-name, thread-specific, thread-specific-set!,
thread-base-priority, thread-base-priority-set!,
thread-priority-boost, thread-priority-boost-set!,
thread-quantum, thread-quantum-set!,
thread-start!, thread-yield!, thread-sleep!,
thread-terminate!, thread-join!
mutex?, make-mutex, mutex-name, mutex-specific,
mutex-specific-set!, mutex-state, mutex-lock!,
mutex-unlock!
condition-variable?,
make-condition-variable, condition-variable-name,
condition-variable-specific, condition-variable-specific-set!,
condition-variable-signal!, condition-variable-broadcast!
current-time, time?, time->seconds, seconds->time
current-exception-handler, with-exception-handler,
raise, join-timeout-exception?, abandoned-mutex-exception?,
terminated-thread-exception?, uncaught-exception?,
uncaught-exception-reason
|