Changeset 015925a for libcfa/src/concurrency
- Timestamp:
 - Jun 2, 2022, 3:11:17 PM (3 years ago)
 - Branches:
 - ADT, ast-experimental, master, pthread-emulation, qualifiedEnum
 - Children:
 - e5d9274
 - Parents:
 - 305aaef
 - File:
 - 
      
- 1 edited
 
- 
          
  libcfa/src/concurrency/thread.cfa (modified) (2 diffs)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
      
libcfa/src/concurrency/thread.cfa
r305aaef r015925a 53 53 node.prev = 0p; 54 54 55 clh_node = new( false ); 55 clh_node = malloc( ); 56 *clh_node = false; 56 57 57 58 doregister(curr_cluster, this); … … 63 64 canary = 0xDEADDEADDEADDEADp; 64 65 #endif 65 delete(clh_node);66 free(clh_node); 66 67 unregister(curr_cluster, this); 67 68 ^self_cor{};  
  Note:
 See   TracChangeset
 for help on using the changeset viewer.