- File:
-
- 1 edited
-
libcfa/src/concurrency/kernel/startup.cfa (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/concurrency/kernel/startup.cfa
r1757f98 r7dd98b6 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 … … 584 584 // Cluster 585 585 static void ?{}(__cluster_proc_list & this) { 586 this. fd= 0;586 this.lock = 0; 587 587 this.idle = 0; 588 588 this.total = 0;
Note:
See TracChangeset
for help on using the changeset viewer.