- File:
-
- 1 edited
-
libcfa/src/concurrency/kernel.hfa (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/concurrency/kernel.hfa
r1eb239e4 r58d64a4 23 23 24 24 extern "C" { 25 #include <bits/pthreadtypes.h> 25 #include <bits/pthreadtypes.h> 26 #include <linux/types.h> 26 27 } 27 28 … … 47 48 // Processor id, required for scheduling threads 48 49 struct __processor_id_t { 49 unsigned id; 50 unsigned id:24; 51 bool full_proc:1; 50 52 51 53 #if !defined(__CFA_NO_STATISTICS__) … … 157 159 158 160 struct io_cancellation { 159 uint32_ttarget;161 __u64 target; 160 162 }; 161 163
Note:
See TracChangeset
for help on using the changeset viewer.