source: libcfa/src/concurrency

Revision Log Mode:


Legend:

Added
Modified
Copied or renamed
Diff Rev Age Author Log Message
(edit) @a757ba1   3 years Thierry Delisle Removed wait-with-io_uring feature which was slow, broken and ifdefed out. ADT ast-experimental
(edit) @6a4ef0c   3 years Thierry Delisle Changed cltr_link to use explicit field name to make gdb easier ADT ast-experimental
(edit) @e8b8e65   3 years Thierry Delisle Added implementation of call_once ADT ast-experimental
(edit) @cd5b58f   3 years Thierry Delisle Changed node link in thread to use dlink called cltr_link ADT ast-experimental
(edit) @15c93d8   3 years Thierry Delisle Renamed ready-queue link fields to rdy_link ADT ast-experimental
(edit) @be5f0a5   3 years Thierry Delisle Changed monitors to use the user_link instead of the ready_link ADT ast-experimental
(edit) @2856982c   3 years Thierry Delisle Changed implicit dlink field in thread$ to have name uxer_link ADT ast-experimental
(edit) @28372f7   3 years Thierry Delisle Changed to park/unpark permit/ticketing to make sure no one unparks a … ADT ast-experimental
(edit) @88ac843e   3 years Thierry Delisle Moved lockfree containers to containers/lockfree.hfa. Added … ADT ast-experimental
(edit) @a167c70c   3 years Thierry Delisle Added thread support for migrating between clusters. ADT ast-experimental
(edit) @8b74fa7   3 years Thierry Delisle cluster now support 'set_concurrency' which addes/removes processors … ADT ast-experimental
(edit) @878cfcc   3 years Thierry Delisle Added extra check to make sure threads is never double executed ADT ast-experimental
(edit) @8bd886e   3 years Thierry Delisle Some clean-up in pthread emulation ADT ast-experimental
(edit) @df6cc9d   3 years Thierry Delisle Merge branch 'master' into pthread-emulation ADT ast-experimental
(edit) @e5256bd   3 years pabuhr Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc ADT ast-experimental
(edit) @4f102fa   3 years pabuhr Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc ADT ast-experimental
(edit) @116a2ea   3 years pabuhr new heap and associated tests updated ADT ast-experimental
(edit) @926d358   3 years Thierry Delisle Removed old asm_labels. Modified preemption check to no longer poll … ADT ast-experimental
(edit) @3fcb5921   3 years Thierry Delisle Fixed what appears to be a bug in retract. Text coverage for this … ADT ast-experimental
(edit) @a55472cc   3 years Thierry Delisle Removed use of single_sem in io since oneshot is sufficient and used … ADT ast-experimental
(edit) @a46f7b6   3 years Thierry Delisle Fixed some warnings/mistakes between 32/64bit builds ADT ast-experimental
(edit) @5f6b2c2   3 years Thierry Delisle Fixed case where the measure time could be 0 and log2(0) is a problem. ADT ast-experimental
(edit) @d1cd4c4   3 years Thierry Delisle Changed moving average weights as an attempt to compensate for logscale. ADT ast-experimental
(edit) @31c967b   3 years Thierry Delisle Changed ready-queue so I can easily change the averaging algorithm. … ADT ast-experimental
(edit) @33e4968e   3 years Thierry Delisle Relaxed the warning a little. ADT ast-experimental
(edit) @da77728   3 years Thierry Delisle Added runtime warning for the leader_spin issue ADT ast-experimental
(edit) @5f9c42b   3 years Thierry Delisle Added strict flag to moving average to keep track of which timestamps … ADT ast-experimental
(edit) @1756e08   3 years Thierry Delisle Added some defensive programming to work around parsing bug ADT ast-experimental
(edit) @160f1aa   3 years Thierry Delisle Changed links of processors in cluster to avoid anonymous names, which … ADT ast-experimental
(edit) @9cd5bd2   3 years Thierry Delisle Added an assembly to prevent null-checks from being optimized out. … ADT ast-experimental pthread-emulation
(edit) @95dab9e   3 years Thierry Delisle Changed real_pthread symbols (now cfaabi_pthread) to be protected in … ADT ast-experimental pthread-emulation
(edit) @7f6a7c9   3 years Thierry Delisle Merge branch 'master' into pthread-emulation ADT ast-experimental pthread-emulation
(edit) @ef1da0e2   3 years f37yu try to make parameter qualifier conversion work for assertions ADT ast-experimental pthread-emulation
(edit) @1c7ed2d   3 years Thierry Delisle Changed futures and oneshots to use new enum capabilities ADT ast-experimental pthread-emulation
(edit) @aa144c5a   3 years Thierry Delisle Relaxed helping cutoff from 1.5X to 8X ADT ast-experimental pthread-emulation
(edit) @2284d20   3 years Thierry Delisle Added some verifys to make sure atomic_acquire isn't used outside … ADT ast-experimental pthread-emulation
(edit) @b443db0   3 years Thierry Delisle Change how no preempts zone are implemented. From begin/end tags to … ADT ast-experimental pthread-emulation
(edit) @1bcbf02   3 years Thierry Delisle Changed declarations using _Thread_local to use thread. I'm fairly … ADT ast-experimental pthread-emulation
(edit) @01ba701   3 years Thierry Delisle Purged "thread_local" from code base. Replaced with C11's … ADT ast-experimental pthread-emulation
(edit) @fbb930e   3 years Thierry Delisle Added option to explicitly poll interrupts. Usefull in cases using … ADT ast-experimental pthread-emulation
(edit) @cefd0b9   3 years Thierry Delisle Fixed intialization of SQE to be more resistant to version updates, … ADT ast-experimental pthread-emulation
(edit) @19cb0cb   3 years Thierry Delisle Added comments and fixed scoping ADT ast-experimental pthread-emulation
(edit) @cd3fc46   3 years Thierry Delisle Changed scheduler lock to remove one level of pointer. ADT ast-experimental pthread-emulation
(edit) @71cf630   3 years Thierry Delisle Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc ADT ast-experimental pthread-emulation
(edit) @741e22c   3 years Thierry Delisle Fixed potential false sharing on ready-schedule mutate lock ADT ast-experimental pthread-emulation
(edit) @8bee858   3 years Thierry Delisle Changed io types to have trailing $ instead of leading ADT ast-experimental pthread-emulation
(edit) @428adbc   3 years z277zhu fix pthread_sig* interpose problems; add test doc Signed-off-by: … ADT ast-experimental pthread-emulation
(edit) @20be782   3 years z277zhu add pthread ADT ast-experimental pthread-emulation
(edit) @a7d696f   3 years z277zhu added pthread symbol interpose Signed-off-by: z277zhu … ADT ast-experimental pthread-emulation
(edit) @c4c8571   3 years Thierry Delisle Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc ADT ast-experimental pthread-emulation
(edit) @7ce8873   3 years Thierry Delisle Added some io stats ADT ast-experimental pthread-emulation
(edit) @2af1943   3 years Thierry Delisle Small improvements to some of the alignment requirements in CFA runtime. ADT ast-experimental pthread-emulation
(edit) @06bdba4   3 years Thierry Delisle Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc ADT ast-experimental pthread-emulation qualifiedEnum
(edit) @fd365da   3 years caparson added atomics to other spin_queue style locks ADT ast-experimental pthread-emulation qualifiedEnum
(edit) @fc2c57a9   3 years Thierry Delisle Fixed assert in waitctx. Removed unnecessary loop in retract. ADT ast-experimental pthread-emulation qualifiedEnum
(edit) @d28524a   3 years caparson Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc ADT ast-experimental pthread-emulation qualifiedEnum
(edit) @4e83bb7   3 years caparson fixed timeout cond var bug and updated pthread_locks test with timeout … ADT ast-experimental pthread-emulation qualifiedEnum
(edit) @b0be3713   3 years Thierry Delisle Missed an atomic store on the TS handling. ADT ast-experimental pthread-emulation qualifiedEnum
(edit) @2ed32fa7   3 years caparson added atomics to spin_queue_lock ADT ast-experimental pthread-emulation qualifiedEnum
(edit) @df932552   3 years caparson added atomic store/load for spinqueue ADT ast-experimental pthread-emulation qualifiedEnum
(edit) @76a798d   3 years caparson hopefully fixed mcs spin lock ADT ast-experimental pthread-emulation qualifiedEnum
(edit) @9e3d123   3 years caparson added atomic_load_n to mcs_spin in attempt at fixing it ADT ast-experimental pthread-emulation qualifiedEnum
(edit) @563a36b   3 years Thierry Delisle Fixed verify that was backwards. ADT ast-experimental pthread-emulation qualifiedEnum
(edit) @f3da205   3 years Thierry Delisle Fixed wait_any to be polymorphic on future type. ADT ast-experimental pthread-emulation qualifiedEnum
(edit) @1c56bf7   3 years Thierry Delisle Fixed retract to not reset the future when retracting. ADT ast-experimental pthread-emulation qualifiedEnum
(edit) @c06551b   3 years caparson added wait_any to fwd.cfa for future_t ADT ast-experimental pthread-emulation qualifiedEnum
(edit) @db7a3ad   3 years caparson fixed build (hopefully) ADT ast-experimental pthread-emulation qualifiedEnum
(edit) @6e2b04e   3 years caparson Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc ADT ast-experimental pthread-emulation qualifiedEnum
(edit) @ae06e0b   3 years caparson added pthread_cond_var ADT ast-experimental pthread-emulation qualifiedEnum
(edit) @ced5e2a   3 years caparson removed debug fields from spinlock_t ADT ast-experimental pthread-emulation qualifiedEnum
(edit) @7affcda   3 years Thierry Delisle Fixed a bug where io wouldn't drain everything if the completion queue … ADT ast-experimental pthread-emulation qualifiedEnum
(edit) @90a8125   3 years Thierry Delisle Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc ADT ast-experimental pthread-emulation qualifiedEnum
(edit) @bf0263c   3 years Thierry Delisle setup error is now clearer ADT ast-experimental pthread-emulation qualifiedEnum
(edit) @e5d9274   3 years caparson Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc ADT ast-experimental pthread-emulation qualifiedEnum
(edit) @015925a   3 years caparson fixed new/delete issue by switching to malloc/free ADT ast-experimental pthread-emulation qualifiedEnum
(edit) @305aaef   3 years caparson fixed multiple def issue ADT ast-experimental pthread-emulation qualifiedEnum
(edit) @490d17e0   3 years caparson fixed multiple def issue ADT ast-experimental pthread-emulation qualifiedEnum
(edit) @f835806   3 years caparson added some locks and cleaned up unused seqable field in thread block ADT ast-experimental pthread-emulation qualifiedEnum
(edit) @c3b9d639   3 years ajbeach Clean-up the exception interface. It should be slightly more like the … ADT ast-experimental pthread-emulation qualifiedEnum
(edit) @c715e5f   3 years ajbeach Removed most of the exception macros (EHM_ group). Made changes to the … ADT ast-experimental pthread-emulation qualifiedEnum
(edit) @5024df4   3 years Thierry Delisle Changed ready-queue to atomically read/write timestamps, no effect on … ADT ast-experimental pthread-emulation qualifiedEnum
(edit) @b035046   3 years Thierry Delisle changed some MAX to ULLONG_MAX to avoid the memory access where … ADT ast-experimental pthread-emulation qualifiedEnum
(edit) @c18bf9e   3 years Thierry Delisle Visibility concurrency ADT ast-experimental pthread-emulation qualifiedEnum
(edit) @108345a   3 years Thierry Delisle visbility for io ADT ast-experimental pthread-emulation qualifiedEnum
(edit) @8108ba8   3 years Thierry Delisle Started to add basic visibility control to libcfa ADT ast-experimental pthread-emulation qualifiedEnum
(edit) @8a5e357   3 years Thierry Delisle Trivial changes to libcfa concurrency ADT ast-experimental pthread-emulation qualifiedEnum
(edit) @7f958c4   3 years caparson added fast lock/cond var ADT ast-experimental pthread-emulation qualifiedEnum
(edit) @0c3aa67   3 years Thierry Delisle Fixed missing initialization. ADT ast-experimental enum pthread-emulation qualifiedEnum
(edit) @a18373a   3 years Thierry Delisle Added a hook for the barrier's last block. Added testing to go with it. ADT ast-experimental enum pthread-emulation qualifiedEnum
(edit) @e71e94a   3 years Thierry Delisle Some clean-up of ready queue usage of -1llu. io types ts now returns … ADT ast-experimental enum pthread-emulation qualifiedEnum
(edit) @31ef267   3 years Thierry Delisle Added comments. ADT ast-experimental enum pthread-emulation qualifiedEnum
(edit) @93b8cf4   3 years Thierry Delisle Added a simple barrier and accompagnying tests. ADT ast-experimental enum pthread-emulation qualifiedEnum
(edit) @f870e257   3 years Thierry Delisle Disable waiting on io_uring for idle (maybe temporary). ADT ast-experimental enum pthread-emulation qualifiedEnum
(edit) @bdfd0bd   3 years Thierry Delisle EINTR will no longer wakeup the idle_sleep. ADT ast-experimental enum pthread-emulation qualifiedEnum
(edit) @4ccc150   3 years Thierry Delisle Fix the verifys I just added. ADT ast-experimental enum pthread-emulation qualifiedEnum
(edit) @77adaee   3 years Thierry Delisle Added more verifys to eventfd_write ADT ast-experimental enum pthread-emulation qualifiedEnum
(edit) @efa28d5   3 years Thierry Delisle Change wake_time to be as long as other timestamps to ease debugging. ADT ast-experimental enum pthread-emulation qualifiedEnum
(edit) @729df21   3 years Thierry Delisle Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc ADT ast-experimental enum pthread-emulation qualifiedEnum
(edit) @d28b70a   3 years Thierry Delisle Now also keep track of last drain time ADT ast-experimental enum pthread-emulation qualifiedEnum
(edit) @4598e03   3 years Thierry Delisle Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc ADT ast-experimental enum pthread-emulation qualifiedEnum
Note: See TracRevisionLog for help on using the revision log.