Changeset 2af1943 for libcfa/src/concurrency/io
- Timestamp:
- Jul 28, 2022, 11:59:02 AM (2 years ago)
- Branches:
- ADT, ast-experimental, master, pthread-emulation
- Children:
- c4c8571
- Parents:
- 13d326ec
- Location:
- libcfa/src/concurrency/io
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/concurrency/io/setup.cfa
r13d326ec r2af1943 346 346 } 347 347 348 void ^?{}( $io_arbiter & this ) {}348 void ^?{}( $io_arbiter & mutex this ) {} 349 349 350 350 $io_arbiter * create(void) { -
libcfa/src/concurrency/io/types.hfa
r13d326ec r2af1943 125 125 126 126 127 struct __attribute__((aligned( 128))) $io_context {127 struct __attribute__((aligned(64))) $io_context { 128 128 $io_arbiter * arbiter; 129 129 processor * proc; … … 153 153 }; 154 154 155 struct __attribute__((aligned(128))) $io_arbiter {155 monitor __attribute__((aligned(64))) $io_arbiter { 156 156 __outstanding_io_queue pending; 157 157 };
Note: See TracChangeset
for help on using the changeset viewer.