Changeset da87eaf
- Timestamp:
- Apr 18, 2024, 10:28:11 PM (7 months ago)
- Branches:
- master
- Children:
- 4e08a54
- Parents:
- cdd25ef
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/concurrency/actor.hfa
rcdd25ef rda87eaf 299 299 300 300 if ( seperate_clus ) { 301 cluster = alloc();301 this.cluster = alloc(); 302 302 (*cluster){}; 303 303 } else cluster = active_cluster(); … … 360 360 adelete( worker_req_queues ); 361 361 adelete( processors ); 362 if ( seperate_clus ) delete( cluster );362 if ( seperate_clus ) delete( this.cluster ); 363 363 364 364 #ifdef ACTOR_STATS // print formatted stats
Note: See TracChangeset
for help on using the changeset viewer.