- File:
-
- 1 edited
-
libcfa/src/concurrency/kernel/startup.cfa (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/concurrency/kernel/startup.cfa
r1757f98 r34b8cb7 527 527 this.local_data = 0p; 528 528 529 this.idle _fd= eventfd(0, 0);530 if (idle _fd< 0) {529 this.idle = eventfd(0, 0); 530 if (idle < 0) { 531 531 abort("KERNEL ERROR: PROCESSOR EVENTFD - %s\n", strerror(errno)); 532 532 } … … 542 542 // Not a ctor, it just preps the destruction but should not destroy members 543 543 static void deinit(processor & this) { 544 close(this.idle _fd);544 close(this.idle); 545 545 } 546 546
Note:
See TracChangeset
for help on using the changeset viewer.