Changeset c1ee231 for libcfa/src/concurrency
- Timestamp:
- Jun 18, 2020, 6:56:13 PM (5 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 030653a
- Parents:
- 016b1eb
- Location:
- libcfa/src/concurrency
- Files:
-
- 2 edited
-
alarm.cfa (modified) (2 diffs)
-
preemption.cfa (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/concurrency/alarm.cfa
r016b1eb rc1ee231 10 10 // Created On : Fri Jun 2 11:31:25 2017 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Sun Jan 5 08:41:36202013 // Update Count : 6912 // Last Modified On : Wed Jun 17 16:11:35 2020 13 // Update Count : 75 14 14 // 15 15 16 16 #define __cforall_thread__ 17 17 18 extern "C" {19 18 #include <errno.h> 20 19 #include <stdio.h> 20 #include <unistd.h> 21 21 #include <string.h> 22 #include <unistd.h>23 22 #include <sys/time.h> 24 }25 23 26 24 #include "alarm.hfa" … … 55 53 } 56 54 57 void ?{}( alarm_node_t & this, processor * proc, Time alarm, Duration period ) with( this ) {55 void ?{}( alarm_node_t & this, processor * proc, Time alarm, Duration period ) with( this ) { 58 56 this.proc = proc; 59 57 this.alarm = alarm; -
libcfa/src/concurrency/preemption.cfa
r016b1eb rc1ee231 10 10 // Created On : Mon Jun 5 14:20:42 2017 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Thu Dec 5 16:34:05 201913 // Update Count : 4 312 // Last Modified On : Wed Jun 17 11:36:25 2020 13 // Update Count : 46 14 14 // 15 15 … … 19 19 #include <assert.h> 20 20 21 extern "C" {22 21 #include <errno.h> 23 22 #include <stdio.h> … … 25 24 #include <unistd.h> 26 25 #include <limits.h> // PTHREAD_STACK_MIN 27 }28 26 29 27 #include "bits/signal.hfa"
Note:
See TracChangeset
for help on using the changeset viewer.