Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/libcfa/concurrency/monitor

    r751d963 re5c8488  
    1010// Created On       : Thd Feb 23 12:27:26 2017
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Sat Oct  7 18:06:45 2017
    13 // Update Count     : 10
     12// Last Modified On : Sat Jul 22 09:59:01 2017
     13// Update Count     : 3
    1414//
    1515
     
    5454void ^?{}( monitor_guard_t & this );
    5555
     56
    5657struct monitor_dtor_guard_t {
    5758        monitor_desc * m;
     
    6364void ?{}( monitor_dtor_guard_t & this, monitor_desc ** m, void (*func)() );
    6465void ^?{}( monitor_dtor_guard_t & this );
    65 
    66 static inline forall( dtype T | sized(T) | { void ^?{}( T & mutex ); } )
    67 void delete( T * th ) {
    68         ^(*th){};
    69         free( th );
    70 }
    7166
    7267//-----------------------------------------------------------------------------
Note: See TracChangeset for help on using the changeset viewer.