Changeset 6a6e205 for libcfa/src
- Timestamp:
- Jan 13, 2025, 1:32:32 PM (8 weeks ago)
- Branches:
- master
- Children:
- c086c6e
- Parents:
- 267b543
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified libcfa/src/concurrency/actor.hfa ¶
r267b543 r6a6e205 113 113 return buffer[old_idx]; 114 114 } 115 request * ret = 0p;116 115 return *0p; 117 116 } … … 147 146 id = i; 148 147 missed = 0; 148 #else 149 (void) i; 149 150 #endif 150 151 } … … 715 716 struct finished_msg_t { inline message; } finished_msg = __base_msg_finished; 716 717 717 allocation receive( actor & this, delete_msg_t & ) { return Delete; }718 allocation receive( actor & this, destroy_msg_t & ) { return Destroy; }719 allocation receive( actor & this, finished_msg_t & ) { return Finished; }718 allocation receive( actor &, delete_msg_t & ) { return Delete; } 719 allocation receive( actor &, destroy_msg_t & ) { return Destroy; } 720 allocation receive( actor &, finished_msg_t & ) { return Finished; } 720 721 721 722 // Default messages used all the time.
Note: See TracChangeset
for help on using the changeset viewer.