Changes in / [8728104:0f15e3b]


Ignore:
Files:
9 deleted
4 edited

Legend:

Unmodified
Added
Removed
  • libcfa/src/Makefile.am

    r8728104 r0f15e3b  
    115115        concurrency/mutex_stmt.hfa \
    116116    concurrency/select.hfa \
    117     concurrency/channel.hfa \
    118     concurrency/actor.hfa
     117    concurrency/channel.hfa
    119118
    120119inst_thread_headers_src = \
  • libcfa/src/concurrency/locks.hfa

    r8728104 r0f15e3b  
    511511        // flag showing if lock is held
    512512        volatile bool held;
     513
     514        #ifdef __CFA_DEBUG__
     515        // for deadlock detection
     516        struct thread$ * owner;
     517        #endif
    513518};
    514519
     
    521526static inline void ?=?( spin_queue_lock & this, spin_queue_lock this2 ) = void;
    522527
    523 // if this is called recursively IT WILL DEADLOCK!
     528// if this is called recursively IT WILL DEADLOCK!!!!!
    524529static inline void lock(spin_queue_lock & this) with(this) {
    525530        mcs_spin_node node;
  • src/Concurrency/module.mk

    r8728104 r0f15e3b  
    1616
    1717SRC += \
    18         Concurrency/Actors.cpp \
    19         Concurrency/Actors.hpp \
    2018        Concurrency/KeywordsNew.cpp \
    2119        Concurrency/Keywords.cc \
     
    2321        Concurrency/WaitforNew.cpp \
    2422        Concurrency/Waitfor.cc \
    25         Concurrency/Waitfor.h 
     23        Concurrency/Waitfor.h
  • src/main.cc

    r8728104 r0f15e3b  
    4646#include "Common/UnimplementedError.h"      // for UnimplementedError
    4747#include "Common/utility.h"                 // for deleteAll, filter, printAll
    48 #include "Concurrency/Actors.hpp"           // for implementActors
    4948#include "Concurrency/Keywords.h"           // for implementMutex, implement...
    5049#include "Concurrency/Waitfor.h"            // for generateWaitfor
     
    342341                PASS( "Generate Autogen Routines", Validate::autogenerateRoutines( transUnit ) );
    343342
    344         PASS( "Implement Actors", Concurrency::implementActors( transUnit ) );
    345 
    346343                PASS( "Implement Mutex", Concurrency::implementMutex( transUnit ) );
    347344                PASS( "Implement Thread Start", Concurrency::implementThreadStarter( transUnit ) );
Note: See TracChangeset for help on using the changeset viewer.