Changeset 88ac843e
- Timestamp:
- Oct 27, 2022, 3:50:15 PM (3 years ago)
- Branches:
- ADT, ast-experimental, master
- Children:
- 22a0e87
- Parents:
- a167c70c
- Files:
-
- 1 added
- 2 deleted
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
benchmark/io/http/worker.hfa
ra167c70c r88ac843e 2 2 3 3 #include <iofwd.hfa> 4 #include < queueLockFree.hfa>4 #include <containers/lockfree.hfa> 5 5 #include <thread.hfa> 6 6 -
libcfa/src/Makefile.am
ra167c70c r88ac843e 62 62 containers/array.hfa \ 63 63 containers/list.hfa \ 64 containers/queueLockFree.hfa \ 65 containers/stackLockFree.hfa \ 64 containers/lockfree.hfa \ 66 65 containers/string_sharectx.hfa \ 67 66 containers/vector2.hfa \ -
libcfa/src/concurrency/locks.hfa
ra167c70c r88ac843e 21 21 22 22 #include "bits/weakso_locks.hfa" 23 #include "containers/ queueLockFree.hfa"23 #include "containers/lockfree.hfa" 24 24 #include "containers/list.hfa" 25 25 … … 423 423 } 424 424 425 static inline size_t on_wait(simple_owner_lock & this) with(this) { 425 static inline size_t on_wait(simple_owner_lock & this) with(this) { 426 426 lock( lock __cfaabi_dbg_ctx2 ); 427 427 /* paranoid */ verifyf( owner != 0p, "Attempt to release lock %p that isn't held", &this ); -
libcfa/src/heap.cfa
ra167c70c r88ac843e 211 211 #if BUCKETLOCK == SPINLOCK 212 212 #elif BUCKETLOCK == LOCKFREE 213 #include < stackLockFree.hfa>213 #include <containers/lockfree.hfa> 214 214 #else 215 215 #error undefined lock type for bucket lock … … 505 505 freeLists[j].blockSize = bucketSizes[j]; 506 506 } // for 507 507 508 508 heapBuffer = 0p; 509 509 heapReserve = 0; -
tests/collections/atomic_mpsc.cfa
ra167c70c r88ac843e 1 1 #include <fstream.hfa> 2 #include < queueLockFree.hfa>2 #include <containers/lockfree.hfa> 3 3 #include <thread.hfa> 4 4
Note:
See TracChangeset
for help on using the changeset viewer.