Changes in src/libcfa/concurrency/kernel.c [c40e7c5:4dad189]
- File:
-
- 1 edited
-
src/libcfa/concurrency/kernel.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/libcfa/concurrency/kernel.c
rc40e7c5 r4dad189 144 144 } 145 145 146 void ?{}(processor & this, cluster * cltr) with( this ){146 void ?{}(processor & this, cluster * cltr) { 147 147 this.cltr = cltr; 148 t erminated{ 0 };149 do_terminate = false;150 preemption_alarm = NULL;151 pending_preemption = false;148 this.terminated{ 0 }; 149 this.do_terminate = false; 150 this.preemption_alarm = NULL; 151 this.pending_preemption = false; 152 152 153 153 start( &this ); 154 154 } 155 155 156 void ?{}(processor & this, cluster * cltr, processorCtx_t & runner) with( this ){156 void ?{}(processor & this, cluster * cltr, processorCtx_t & runner) { 157 157 this.cltr = cltr; 158 t erminated{ 0 };159 do_terminate = false;160 preemption_alarm = NULL;161 pending_preemption = false;162 kernel_thread = pthread_self();158 this.terminated{ 0 }; 159 this.do_terminate = false; 160 this.preemption_alarm = NULL; 161 this.pending_preemption = false; 162 this.kernel_thread = pthread_self(); 163 163 164 164 this.runner = &runner;
Note:
See TracChangeset
for help on using the changeset viewer.