Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcfa/src/concurrency/locks.cfa

    rfd54fef rac5816d  
    77//-----------------------------------------------------------------------------
    88// info_thread
    9 forall(L & | is_blocking_lock(L)) {
     9forall(dtype L | is_blocking_lock(L)) {
    1010        struct info_thread {
    1111                // used to put info_thread on a dl queue (aka sequence)
     
    195195//-----------------------------------------------------------------------------
    196196// alarm node wrapper
    197 forall(L & | is_blocking_lock(L)) {
     197forall(dtype L | is_blocking_lock(L)) {
    198198        struct alarm_node_wrap {
    199199                alarm_node_t alarm_node;
     
    239239//-----------------------------------------------------------------------------
    240240// condition variable
    241 forall(L & | is_blocking_lock(L)) {
     241forall(dtype L | is_blocking_lock(L)) {
    242242
    243243        void ?{}( condition_variable(L) & this ){
Note: See TracChangeset for help on using the changeset viewer.