- File:
-
- 1 edited
-
libcfa/src/concurrency/kernel.cfa (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/concurrency/kernel.cfa
ra1538cd ra5e7233 149 149 #endif 150 150 151 // if we need to run some special setup, now is the time to do it.152 if(this->init.fnc) {153 this->init.fnc(this->init.arg);154 }155 156 151 { 157 152 // Setup preemption data … … 162 157 #endif 163 158 159 // if we need to run some special setup, now is the time to do it. 160 if(this->init.thrd) { 161 this->init.thrd->curr_cluster = this->cltr; 162 __run_thread(this, this->init.thrd); 163 } 164 164 165 165 __cfadbg_print_safe(runtime_core, "Kernel : core %p started\n", this);
Note:
See TracChangeset
for help on using the changeset viewer.