source: libcfa/src/concurrency/kernel

Revision Log Mode:


Legend:

Added
Modified
Copied or renamed
Diff Rev Age Author Log Message
(edit) @8bc67cf   7 months pabuhr formatting, SKULLDUGGERY to remove spurious free-nonheap-object warning
(edit) @ba068c0   8 months pabuhr rename clock routines processor and program to processor_cpu and …
(edit) @c34bb1f   9 months caparson fixed nonlocal exception edge case for program main and added poll() …
(edit) @ca0c311   10 months caparson added ability to get number of processors constructed on a cluster …
(edit) @24d6572   11 months f37yu Merge branch 'master' into ast-experimental ast-experimental
(edit) @a0a949c   14 months pabuhr formatting, remove unnecessary #include files and code ADTast-experimental
(edit) @a8667ab   14 months pabuhr expunge all rseq code from runtime ADTast-experimental
(edit) @aca0d2f   14 months pabuhr make anonymous struct declaration static ADTast-experimental
(edit) @56bb2e1   14 months pabuhr clean up #include files ADTast-experimental
(edit) @f5f2768   15 months pabuhr make _GNU_SOURCE default, change IO to use SOCKADDR_ARG and … ADTast-experimental
(edit) @dd46fd3   17 months pabuhr generalization of PRNG ADTast-experimental
(edit) @29702ad   17 months Thierry Delisle Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc ADTast-experimental
(edit) @1553a55   17 months Thierry Delisle Explicitly zero initialize the intrusive link fields ADTast-experimental
(edit) @857081e   17 months pabuhr change type of yield parameter from unsigned int to size_t ADTast-experimental
(edit) @d2ad151   17 months pabuhr major update of PRNG ADTast-experimental
(edit) @639e4fc   18 months Thierry Delisle Changed cluster link to use explicit type to avoid anonymous names in … ADTast-experimental
(edit) @a757ba1   18 months Thierry Delisle Removed wait-with-io_uring feature which was slow, broken and ifdefed out. ADTast-experimental
(edit) @6a4ef0c   18 months Thierry Delisle Changed cltr_link to use explicit field name to make gdb easier ADTast-experimental
(edit) @cd5b58f   18 months Thierry Delisle Changed node link in thread to use dlink called cltr_link ADTast-experimental
(edit) @15c93d8   18 months Thierry Delisle Renamed ready-queue link fields to rdy_link ADTast-experimental
(edit) @28372f7   18 months Thierry Delisle Changed to park/unpark permit/ticketing to make sure no one unparks a … ADTast-experimental
(edit) @8b74fa7   18 months Thierry Delisle cluster now support 'set_concurrency' which addes/removes processors … ADTast-experimental
(edit) @878cfcc   18 months Thierry Delisle Added extra check to make sure threads is never double executed ADTast-experimental
(edit) @df6cc9d   19 months Thierry Delisle Merge branch 'master' into pthread-emulation ADTast-experimental
(edit) @e5256bd   19 months pabuhr Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc ADTast-experimental
(edit) @4f102fa   19 months pabuhr Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc ADTast-experimental
(edit) @116a2ea   19 months pabuhr new heap and associated tests updated ADTast-experimental
(edit) @3fcb5921   19 months Thierry Delisle Fixed what appears to be a bug in retract. Text coverage for this … ADTast-experimental
(edit) @a46f7b6   19 months Thierry Delisle Fixed some warnings/mistakes between 32/64bit builds ADTast-experimental
(edit) @5f6b2c2   19 months Thierry Delisle Fixed case where the measure time could be 0 and log2(0) is a problem. ADTast-experimental
(edit) @d1cd4c4   19 months Thierry Delisle Changed moving average weights as an attempt to compensate for logscale. ADTast-experimental
(edit) @31c967b   19 months Thierry Delisle Changed ready-queue so I can easily change the averaging algorithm. … ADTast-experimental
(edit) @33e4968e   19 months Thierry Delisle Relaxed the warning a little. ADTast-experimental
(edit) @da77728   19 months Thierry Delisle Added runtime warning for the leader_spin issue ADTast-experimental
(edit) @5f9c42b   19 months Thierry Delisle Added strict flag to moving average to keep track of which timestamps … ADTast-experimental
(edit) @1756e08   19 months Thierry Delisle Added some defensive programming to work around parsing bug ADTast-experimental
(edit) @9cd5bd2   19 months Thierry Delisle Added an assembly to prevent null-checks from being optimized out. … ADTast-experimentalpthread-emulation
(edit) @95dab9e   19 months Thierry Delisle Changed real_pthread symbols (now cfaabi_pthread) to be protected in … ADTast-experimentalpthread-emulation
(edit) @7f6a7c9   19 months Thierry Delisle Merge branch 'master' into pthread-emulation ADTast-experimentalpthread-emulation
(edit) @1c7ed2d   20 months Thierry Delisle Changed futures and oneshots to use new enum capabilities ADTast-experimentalpthread-emulation
(edit) @aa144c5   20 months Thierry Delisle Relaxed helping cutoff from 1.5X to 8X ADTast-experimentalpthread-emulation
(edit) @2284d20   20 months Thierry Delisle Added some verifys to make sure atomic_acquire isn't used outside … ADTast-experimentalpthread-emulation
(edit) @1bcbf02   20 months Thierry Delisle Changed declarations using _Thread_local to use thread. I'm fairly … ADTast-experimentalpthread-emulation
(edit) @01ba701   20 months Thierry Delisle Purged "thread_local" from code base. Replaced with C11's … ADTast-experimentalpthread-emulation
(edit) @cd3fc46   21 months Thierry Delisle Changed scheduler lock to remove one level of pointer. ADTast-experimentalpthread-emulation
(edit) @71cf630   21 months Thierry Delisle Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc ADTast-experimentalpthread-emulation
(edit) @741e22c   21 months Thierry Delisle Fixed potential false sharing on ready-schedule mutate lock ADTast-experimentalpthread-emulation
(edit) @8bee858   21 months Thierry Delisle Changed io types to have trailing $ instead of leading ADTast-experimentalpthread-emulation
(edit) @20be782   21 months z277zhu add pthread ADTast-experimentalpthread-emulation
(edit) @a7d696f   21 months z277zhu added pthread symbol interpose Signed-off-by: z277zhu … ADTast-experimentalpthread-emulation
(edit) @2af1943   21 months Thierry Delisle Small improvements to some of the alignment requirements in CFA runtime. ADTast-experimentalpthread-emulation
(edit) @fc2c57a9   22 months Thierry Delisle Fixed assert in waitctx. Removed unnecessary loop in retract. ADTast-experimentalpthread-emulationqualifiedEnum
(edit) @563a36b   23 months Thierry Delisle Fixed verify that was backwards. ADTast-experimentalpthread-emulationqualifiedEnum
(edit) @f3da205   23 months Thierry Delisle Fixed wait_any to be polymorphic on future type. ADTast-experimentalpthread-emulationqualifiedEnum
(edit) @1c56bf7   23 months Thierry Delisle Fixed retract to not reset the future when retracting. ADTast-experimentalpthread-emulationqualifiedEnum
(edit) @c06551b   23 months caparson added wait_any to fwd.cfa for future_t ADTast-experimentalpthread-emulationqualifiedEnum
(edit) @5024df4   2 years Thierry Delisle Changed ready-queue to atomically read/write timestamps, no effect on … ADTast-experimentalpthread-emulationqualifiedEnum
(edit) @b035046   2 years Thierry Delisle changed some MAX to ULLONG_MAX to avoid the memory access where … ADTast-experimentalpthread-emulationqualifiedEnum
(edit) @c18bf9e   2 years Thierry Delisle Visibility concurrency ADTast-experimentalpthread-emulationqualifiedEnum
(edit) @0c3aa67   2 years Thierry Delisle Fixed missing initialization. ADTast-experimentalenumpthread-emulationqualifiedEnum
(edit) @f870e257   2 years Thierry Delisle Disable waiting on io_uring for idle (maybe temporary). ADTast-experimentalenumpthread-emulationqualifiedEnum
(edit) @efa28d5   2 years Thierry Delisle Change wake_time to be as long as other timestamps to ease debugging. ADTast-experimentalenumpthread-emulationqualifiedEnum
(edit) @262fafd9   2 years Thierry Delisle Added debugging information to help find deadlock. ADTast-experimentalenumpthread-emulationqualifiedEnum
(edit) @64bdacc   2 years Thierry Delisle Future now wait for 2p to resolve in available. ADTast-experimentalenumpthread-emulationqualifiedEnum
(edit) @1a567d0   2 years Thierry Delisle Fixed 32-bit compilation ADTast-experimentalenumpthread-emulationqualifiedEnum
(edit) @4479890   2 years Thierry Delisle Implemented helping for io drain based on timestamps. ADTast-experimentalenumpthread-emulationqualifiedEnum
(edit) @78a580d   2 years Thierry Delisle I/O now updates the timestamps when draining. Timestamps are not used yet. ADTast-experimentalenumpthread-emulationqualifiedEnum
(edit) @8f01ad71   2 years Thierry Delisle Forgot a few pragma once ADTast-experimentalenumpthread-emulationqualifiedEnum
(edit) @adb3ea1   2 years Thierry Delisle Some more incremental work towards using timestamps for io fairness ADTast-experimentalenumpthread-emulationqualifiedEnum
(edit) @22226e4   2 years Thierry Delisle Tentative fix for spurious deadlock in some concurrency tests ADTast-experimentalenumpthread-emulationqualifiedEnum
(edit) @708ae38   2 years Thierry Delisle Some more cleanup and grow/shrink now readjusts io timestamps. (They … ADTast-experimentalenumpthread-emulationqualifiedEnum
(edit) @48a91e2   2 years Thierry Delisle Fixed defines for cases without RSEQ ADTast-experimentalenumpthread-emulationqualifiedEnum
(edit) @bfb9bf5   2 years Thierry Delisle Fixed some warnings ADTast-experimentalenumpthread-emulationqualifiedEnum
(edit) @884f3f67   2 years Thierry Delisle Change how the ready queue is initialized to make it common with I/O ADTast-experimentalenumpthread-emulationqualifiedEnum
(edit) @c42b8a1   2 years Thierry Delisle Major cleanup and moved cluster growth to new file ADTast-experimentalenumpthread-emulationqualifiedEnum
(edit) @13fdf86   2 years Thierry Delisle Moved preemption reason to kernel_private and added preempt IO. ADTast-experimentalenumpthread-emulationqualifiedEnum
(edit) @a182ad5   2 years Thierry Delisle Revert "removed old memory allocator and replaced it with the … ADTast-experimentalenumpthread-emulationqualifiedEnum
(edit) @fe610ab   2 years pabuhr Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc ADTast-experimentalenumpthread-emulationqualifiedEnum
(edit) @09ae8a6   2 years pabuhr change initialization of stacksize = max( PTHREAD_STACK_MIN, … ADTast-experimentalenumpthread-emulationqualifiedEnum
(edit) @5614a191   2 years m3zulfiq removed old memory allocator and replaced it with the concurrent allocator ADTast-experimentalenumpthread-emulationqualifiedEnum
(edit) @c655650   2 years pabuhr update fast PRNG code ADTast-experimentalenumpthread-emulationqualifiedEnum
(edit) @c9c1c1c   2 years Thierry Delisle Minor changes to kernel main loop and fixed stats. ADTast-experimentalenumforall-pointer-decaypthread-emulationqualifiedEnum
(edit) @7cf3b1d   2 years Thierry Delisle Added level of indirection to idle sleeps which helps statistics. ADTast-experimentalenumforall-pointer-decaypthread-emulationqualifiedEnum
(edit) @c90db2d   2 years Thierry Delisle Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc ADTast-experimentalenumforall-pointer-decaypthread-emulationqualifiedEnum
(edit) @145dcd5   2 years Thierry Delisle Now using MAX instead of -1u since it's more appropriate. ADTast-experimentalenumforall-pointer-decaypthread-emulationqualifiedEnum
(edit) @5d1ebb9   2 years pabuhr remove thread_rand, remove consolidated random generators ADTast-experimentalenumforall-pointer-decaypthread-emulationqualifiedEnum
(edit) @919a6b2   2 years pabuhr formatting ADTast-experimentalenumforall-pointer-decaypthread-emulationqualifiedEnum
(edit) @1959528   2 years pabuhr third attempt at specialized PRNG ADTast-experimentalenumforall-pointer-decaypthread-emulationqualifiedEnum
(edit) @c52f033   2 years pabuhr formatting ADTast-experimentalenumforall-pointer-decaypthread-emulationqualifiedEnum
(edit) @7d0ebd0   2 years Thierry Delisle Processors should now correctly be unconditionnaly woken-up on termination ADTast-experimentalenumforall-pointer-decaypthread-emulationqualifiedEnum
(edit) @eaf269d   2 years pabuhr add enum DEFAULT_STACK_SIZE in invoke.h and replace 65000 with enum, … ADTast-experimentalenumforall-pointer-decaypthread-emulationqualifiedEnum
(edit) @1757f98   2 years Thierry Delisle Refactoring idle sleep to try and help the change from idle on read to … ADTast-experimentalenumforall-pointer-decaypthread-emulationqualifiedEnum
(edit) @34b8cb7   2 years Thierry Delisle Step 1 of a new scheme to simplify wake_one. ADTast-experimentalenumforall-pointer-decaypthread-emulationqualifiedEnum
(edit) @7dd98b6   2 years Thierry Delisle Moved cfa_main_returned to libcfa so it works when the main is written … ADTast-experimentalenumforall-pointer-decaypthread-emulationqualifiedEnum
(edit) @24e321c   3 years Thierry Delisle Unpark now takes a hint on locality. ADTast-experimentalenumforall-pointer-decaypthread-emulationqualifiedEnum
(edit) @abcae55   3 years Thierry Delisle Removed last_cpu (and small spacing changes) ADTast-experimentalenumforall-pointer-decaypthread-emulationqualifiedEnum
(edit) @d874f59   3 years Thierry Delisle Fixed crash from get_cpu ADTast-experimentalenumforall-pointer-decayjacob/cs343-translationnew-ast-unique-exprpthread-emulationqualifiedEnum
(edit) @c86ee4c   3 years Thierry Delisle Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc ADTast-experimentalenumforall-pointer-decayjacob/cs343-translationnew-ast-unique-exprpthread-emulationqualifiedEnum
(edit) @1f45c7d   3 years Thierry Delisle Now tracking cpu migrations using push_stat. Some minor fixes to the … ADTast-experimentalenumforall-pointer-decayjacob/cs343-translationnew-ast-unique-exprpthread-emulationqualifiedEnum
(edit) @e84ab3d   3 years Thierry Delisle Step 1 of changing $thread to thread$ ADTast-experimentalenumforall-pointer-decayjacob/cs343-translationnew-ast-unique-exprpthread-emulationqualifiedEnum
Note: See TracRevisionLog for help on using the revision log.