Skip to content
Success

Changes

Summary

  1. added go and cfa waituntil channel benchmarks (details)
  2. Removed internal code from TypeSubstitution header. It caused a chain of include problems, which have been corrected. (details)
  3. add short atomic instruction macros (details)
  4. add lock-free stack using double-wide CAS (details)
  5. add new atomic macros to Makefile.am (details)
  6. update header comments (details)
  7. Flesh out "C" array syntax testing. (details)
  8. Address build error from commit a5aa5b. (details)
  9. fix lockfree-stack test on 32-bit (details)
  10. first attempt at renaming directory tests/concurrent to tests/concurrency to harmonize with other concurrency directory names (details)
  11. found further uses of concurrent directory (details)
  12. fix spelling mistake of concurrency (details)
  13. fix comments referring to concurrency directory (details)
Commit 382467f107c8ab83732aeb24661a7f05cc7990cb by caparsons
added go and cfa waituntil channel benchmarks
The file was addeddoc/theses/colby_parsons_MMAth/benchmarks/waituntil/cfa/contend.cfa
The file was addeddoc/theses/colby_parsons_MMAth/benchmarks/waituntil/run
The file was addeddoc/theses/colby_parsons_MMAth/benchmarks/waituntil/go/sidechan/sidechan.go
The file was addeddoc/theses/colby_parsons_MMAth/benchmarks/waituntil/go/contend/go.mod
The file was addeddoc/theses/colby_parsons_MMAth/benchmarks/waituntil/go/spin8/go.mod
The file was addeddoc/theses/colby_parsons_MMAth/benchmarks/waituntil/go/contend2/contend.go
The file was addeddoc/theses/colby_parsons_MMAth/benchmarks/waituntil/go/spin4/spin.go
The file was addeddoc/theses/colby_parsons_MMAth/benchmarks/waituntil/cfa/spin.cfa
The file was addeddoc/theses/colby_parsons_MMAth/benchmarks/waituntil/go/contend/contend.go
The file was addeddoc/theses/colby_parsons_MMAth/benchmarks/waituntil/go/contend8/contend.go
The file was addeddoc/theses/colby_parsons_MMAth/benchmarks/waituntil/go/spin/spin.go
The file was addeddoc/theses/colby_parsons_MMAth/benchmarks/waituntil/go/spin4/go.mod
The file was addeddoc/theses/colby_parsons_MMAth/benchmarks/waituntil/go/contend8/go.mod
The file was addeddoc/theses/colby_parsons_MMAth/benchmarks/waituntil/go/spin2/go.mod
The file was addeddoc/theses/colby_parsons_MMAth/benchmarks/waituntil/go/spin/go.mod
The file was addeddoc/theses/colby_parsons_MMAth/benchmarks/waituntil/cfa/sidechan.cfa
The file was addeddoc/theses/colby_parsons_MMAth/benchmarks/waituntil/go/contend4/go.mod
The file was addeddoc/theses/colby_parsons_MMAth/benchmarks/waituntil/go/spin2/spin.go
The file was addeddoc/theses/colby_parsons_MMAth/benchmarks/waituntil/go/contend2/go.mod
The file was addeddoc/theses/colby_parsons_MMAth/benchmarks/waituntil/go/contend4/contend.go
The file was addeddoc/theses/colby_parsons_MMAth/benchmarks/waituntil/go/sidechan/go.mod
The file was addeddoc/theses/colby_parsons_MMAth/benchmarks/waituntil/go/spin8/spin.go
Commit bccd70a18277379d29bc911ade6a08acf9c36dbd by ajbeach
Removed internal code from TypeSubstitution header. It caused a chain of include problems, which have been corrected.
The file was modifiedsrc/ResolvExpr/PolyCost.cc
The file was modifiedsrc/AST/Pass.impl.hpp
The file was modifiedsrc/MakeLibCfaNew.cpp
The file was modifiedsrc/GenPoly/SpecializeNew.cpp
The file was modifiedsrc/Concurrency/Waituntil.cpp
The file was modifiedsrc/main.cc
The file was modifiedsrc/AST/SymbolTable.cpp
The file was modifiedsrc/Validate/Autogen.cpp
The file was modifiedsrc/AST/TypeSubstitution.cpp
The file was modifiedsrc/Virtual/ExpandCasts.cc
The file was modifiedsrc/ControlStruct/ExceptDeclNew.cpp
The file was modifiedsrc/AST/Print.cpp
The file was modifiedsrc/Validate/FixQualifiedTypes.cpp
The file was modifiedsrc/ResolvExpr/CommonType.cc
The file was modifiedsrc/Validate/GenericParameter.cpp
The file was modifiedsrc/Validate/ReplaceTypedef.cpp
The file was modifiedsrc/AST/TypeSubstitution.hpp
The file was modifiedsrc/Tuples/Explode.cc
Commit 8463136403456b96eddab58ce5210e58298e178a by Peter Buhr
add short atomic instruction macros
The file was addedlibcfa/src/concurrency/atomic.hfa
Commit 2314aac465581f544ba9e4fc46886c658b16c34b by Peter Buhr
add lock-free stack using double-wide CAS
The file was addedtests/concurrent/lockfree_stack.cfa
The file was addedtests/concurrent/.expect/lockfree_stack.txt
Commit 0e6cadf17f96f2948028d7a51ba20e3fe63a524c by Peter Buhr
add new atomic macros to Makefile.am
The file was modifiedlibcfa/src/Makefile.am
Commit 42468693de700fc817ab7892fc8bd114feaa45f7 by Peter Buhr
update header comments
The file was modifiedtests/PRNG.cfa
Commit a5aa5bf540d60862fa4c03609b41cf72df5835d0 by Michael Brooks
Flesh out "C" array syntax testing.

Enable testing of expected-rejection cases.
One such "test" (now trac #275) had regressed while it was commented out.

Add expected-acceptance cases for size-star declarations.
Add cases for "dependent parameter" syntax.

Add comments summarizing semantics of these (obscure C) syntax cases.
The file was addedtests/.expect/array-ERR2.txt
The file was modifiedtests/.expect/array.txt
The file was addedtests/.expect/array-ERR3.txt
The file was addedtests/.expect/array-ERR1.txt
The file was modifiedtests/array.cfa
The file was modifiedtests/Makefile.am
Commit 8a919cfec5f277378c3bc7e5d16717f7d44058c6 by Michael Brooks
Address build error from commit a5aa5b.

To keep: Change all tabs to spaces in the test source, to make error-case output consistent across compilers.

To investigate further: Comment out test of "dependent parameter" syntax that uses star in prototype, which got an unexpected warning under gcc11.
The file was modifiedtests/array.cfa
Commit 687b663f6ff1064b49dd90edc1954e54108c791c by Peter Buhr
fix lockfree-stack test on 32-bit
The file was modifiedtests/concurrent/lockfree_stack.cfa
Commit c26bea2aa0f87b4b070349c5801adc32fb0d4cf9 by Peter Buhr
first attempt at renaming directory tests/concurrent to tests/concurrency to harmonize with other concurrency directory names
The file was addedtests/concurrency/unified_locking/.expect/spin_queue_lock.txt
The file was addedtests/concurrency/unified_locking/.expect/mcs_block_spin_lock.txt
The file was addedtests/concurrency/examples/boundedBufferINT.cfa
The file was addedtests/concurrency/waituntil/timeout.cfa
The file was removedtests/concurrent/examples/boundedBufferTHREAD.cfa
The file was removedtests/concurrent/waitfor/dtor.cfa
The file was removedtests/concurrent/waitfor/else.cfa
The file was removedtests/concurrent/futures/.expect/typed.txt
The file was removedtests/concurrent/examples/boundedBufferINT.cfa
The file was addedtests/concurrency/actors/inherit.cfa
The file was addedtests/concurrency/barrier/.expect/generation.txt
The file was addedtests/concurrency/waitfor/dtor.cfa
The file was addedtests/concurrency/waitfor/.expect/when.txt
The file was addedtests/concurrency/waituntil/locks.cfa
The file was removedtests/concurrent/park/.expect/contention.txt
The file was addedtests/concurrency/unified_locking/pthread_locks.cfa
The file was addedtests/concurrency/readyQ/barrier_sleeper.cfa
The file was removedtests/concurrent/thread.cfa
The file was removedtests/concurrent/futures/select_future.cfa
The file was addedtests/concurrency/readyQ/.expect/barrier_sleeper.txt
The file was removedtests/concurrent/unified_locking/simple_owner_lock.cfa
The file was addedtests/concurrency/channels/barrier.cfa
The file was removedtests/concurrent/waituntil/.expect/channels.txt
The file was removedtests/concurrent/waituntil/channel_close.cfa
The file was removedtests/concurrent/actors/types.cfa
The file was addedtests/concurrency/preempt.cfa
The file was removedtests/concurrent/examples/multiSort.cfa
The file was addedtests/concurrency/unified_locking/.expect/pthread_locks.txt
The file was addedtests/concurrency/.expect/clib.txt
The file was removedtests/concurrent/pthread/.expect/pthread_demo_create_join.txt
The file was addedtests/concurrency/examples/.in/quickSort.txt
The file was addedtests/concurrency/park/start_parked.cfa
The file was addedtests/concurrency/pthread/pthread_key_test.cfa
The file was addedtests/concurrency/mainError.cfa
The file was removedtests/concurrent/waituntil/.expect/channel_close.txt
The file was modifiedtests/Makefile.am
The file was removedtests/concurrent/examples/.expect/gortn.txt
The file was addedtests/concurrency/channels/big_elems.cfa
The file was removedtests/concurrent/unified_locking/.expect/futex_mutex.txt
The file was addedtests/concurrency/waituntil/.expect/locks.txt
The file was removedtests/concurrent/pthread/pthread_attr_test.cfa
The file was removedtests/concurrent/waituntil/one_chan.cfa
The file was removedtests/concurrent/waitfor/.expect/recurse.txt
The file was removedtests/concurrent/examples/datingService.cfa
The file was addedtests/concurrency/mutexstmt/monitors.cfa
The file was removedtests/concurrent/channels/.expect/pub_sub.txt
The file was removedtests/concurrent/actors/poison.cfa
The file was addedtests/concurrency/futures/basic.cfa
The file was addedtests/concurrency/.expect/multi-monitor.txt
The file was removedtests/concurrent/.expect/once.txt
The file was addedtests/concurrency/actors/pingpong.cfa
The file was addedtests/concurrency/unified_locking/exp_backoff.cfa
The file was addedtests/concurrency/mutexstmt/.expect/locks.txt
The file was removedtests/concurrent/pthread/pthread_demo_lock.cfa
The file was removedtests/concurrent/waituntil/channel_zero_size.cfa
The file was removedtests/concurrent/.expect/cluster.txt
The file was addedtests/concurrency/waituntil/.expect/channel_close.txt
The file was removedtests/concurrent/pthread/.expect/pthread_demo_lock.txt
The file was addedtests/concurrency/.expect/monitor.txt
The file was addedtests/concurrency/unified_locking/mcs_spin.cfa
The file was removedtests/concurrent/pthread/.expect/bounded_buffer.x64.txt
The file was removedtests/concurrent/signal/.expect/disjoint.txt
The file was addedtests/concurrency/channels/zero_size.cfa
The file was removedtests/concurrent/barrier/.expect/generation.txt
The file was removedtests/concurrent/actors/static.cfa
The file was addedtests/concurrency/clib_tls.c
The file was addedtests/concurrency/keywordErrors.cfa
The file was addedtests/concurrency/unified_locking/.expect/fast_block_lock.txt
The file was removedtests/concurrent/channels/.expect/ping_pong.txt
The file was removedtests/concurrent/channels/.expect/big_elems.txt
The file was addedtests/concurrency/channels/.expect/contend.txt
The file was addedtests/concurrency/unified_locking/.expect/mcs_spin.txt
The file was removedtests/concurrent/futures/.expect/select_future.txt
The file was addedtests/concurrency/futures/.expect/abandon.txt
The file was removedtests/concurrent/signal/.expect/block.txt
The file was removedtests/concurrent/join.cfa
The file was removedtests/concurrent/.expect/preempt2.txt
The file was removedtests/concurrent/channels/churn.cfa
The file was addedtests/concurrency/unified_locking/spintest.cfa
The file was removedtests/concurrent/waitfor/simple.cfa
The file was addedtests/concurrency/signal/block.cfa
The file was addedtests/concurrency/waitfor/parse.cfa
The file was addedtests/concurrency/clib.c
The file was removedtests/concurrent/waituntil/.expect/locks.txt
The file was addedtests/concurrency/unified_locking/thread_test.cfa
The file was removedtests/concurrent/barrier/generation.cfa
The file was removedtests/concurrent/pthread/pthread_key_test.cfa
The file was removedtests/concurrent/actors/.expect/pingpong.txt
The file was addedtests/concurrency/.expect/migrate.txt
The file was addedtests/concurrency/.expect/ctor-check.txt
The file was addedtests/concurrency/.expect/lockfree_stack.txt
The file was removedtests/concurrent/waitfor/.expect/else.txt
The file was removedtests/concurrent/barrier/.expect/order.txt
The file was addedtests/concurrency/unified_locking/mcs.cfa
The file was removedtests/concurrent/futures/.expect/wait_any.txt
The file was removedtests/concurrent/waitfor/.expect/when.txt
The file was removedtests/concurrent/waitfor/when.cfa
The file was addedtests/concurrency/pthread/pthread_cond_test.cfa
The file was removedtests/concurrent/channels/.expect/zero_size.txt
The file was removedtests/concurrent/unified_locking/mcs_spin.cfa
The file was removedtests/concurrent/actors/.expect/types.txt
The file was addedtests/concurrency/.expect/thread.txt
The file was removedtests/concurrent/actors/.expect/static.txt
The file was removedtests/concurrent/.expect/mainError.txt
The file was removedtests/concurrent/unified_locking/.expect/mcs_spin.txt
The file was addedtests/concurrency/channels/daisy_chain.cfa
The file was addedtests/concurrency/multi-monitor.cfa
The file was removedtests/concurrent/clib.c
The file was addedtests/concurrency/unified_locking/futex_mutex.cfa
The file was removedtests/concurrent/examples/quickSort.generic.cfa
The file was removedtests/concurrent/actors/.expect/dynamic.txt
The file was removedtests/concurrent/cluster.cfa
The file was addedtests/concurrency/unified_locking/test_debug.cfa
The file was removedtests/concurrent/.expect/preempt.txt
The file was removedtests/concurrent/examples/.expect/boundedBufferINT.txt
The file was addedtests/concurrency/.expect/joinerror.sed
The file was removedtests/concurrent/barrier/.expect/last.txt
The file was addedtests/concurrency/examples/.expect/boundedBufferEXT.txt
The file was removedtests/concurrent/waituntil/timeout.cfa
The file was addedtests/concurrency/actors/.expect/static.txt
The file was addedtests/concurrency/preempt2.cfa
The file was addedtests/concurrency/waitfor/.expect/recurse.txt
The file was addedtests/concurrency/.expect/join.txt
The file was removedtests/concurrent/unified_locking/mutex_test.hfa
The file was addedtests/concurrency/waituntil/futures.cfa
The file was removedtests/concurrent/unified_locking/mcs_block_spin_lock.cfa
The file was addedtests/concurrency/signal/disjoint.cfa
The file was removedtests/concurrent/futures/abandon.cfa
The file was addedtests/concurrency/waituntil/channels.cfa
The file was removedtests/concurrent/examples/matrixSum.cfa
The file was addedtests/concurrency/channels/.expect/hot_potato.txt
The file was removedtests/concurrent/ctor-check.cfa
The file was removedtests/concurrent/mutexstmt/locks.cfa
The file was removedtests/concurrent/actors/pingpong.cfa
The file was addedtests/concurrency/futures/.expect/select_future.txt
The file was removedtests/concurrent/joinerror.cfa
The file was addedtests/concurrency/channels/churn.cfa
The file was removedtests/concurrent/actors/.expect/poison.txt
The file was removedtests/concurrent/.expect/joinerror.sed
The file was addedtests/concurrency/unified_locking/fast_block_lock.cfa
The file was removedtests/concurrent/unified_locking/.expect/block_spin_lock.txt
The file was removedtests/concurrent/examples/gortn.cfa
The file was addedtests/concurrency/examples/gortn.cfa
The file was addedtests/concurrency/pthread/.expect/pthread_once_test.txt
The file was addedtests/concurrency/readyQ/leader_spin.cfa
The file was removedtests/concurrent/signal/block.cfa
The file was addedtests/concurrency/waituntil/.expect/channel_zero_size.txt
The file was removedtests/concurrent/examples/.expect/datingService.txt
The file was addedtests/concurrency/barrier/.expect/order.txt
The file was addedtests/concurrency/channels/ping_pong.cfa
The file was removedtests/concurrent/actors/matrix.cfa
The file was addedtests/concurrency/signal/.expect/wait.txt
The file was removedtests/concurrent/waituntil/basic_else.cfa
The file was removedtests/concurrent/channels/.expect/contend.txt
The file was addedtests/concurrency/sleep.cfa
The file was addedtests/concurrency/unified_locking/.expect/locks.txt
The file was removedtests/concurrent/unified_locking/pthread_locks.cfa
The file was addedtests/concurrency/pthread/.expect/pthread_key_test.txt
The file was addedtests/concurrency/barrier/.expect/last.txt
The file was removedtests/concurrent/unified_locking/futex_mutex.cfa
The file was removedtests/concurrent/unified_locking/.expect/simple_owner_lock.txt
The file was removedtests/concurrent/multi-monitor.cfa
The file was removedtests/concurrent/channels/daisy_chain.cfa
The file was removedtests/concurrent/unified_locking/spin_queue_lock.cfa
The file was addedtests/concurrency/waituntil/.expect/all_types.txt
The file was removedtests/concurrent/channels/contend.cfa
The file was removedtests/concurrent/pthread/pthread_demo_create_join.cfa
The file was removedtests/concurrent/waitfor/.expect/dtor.txt
The file was addedtests/concurrency/park/contention.cfa
The file was removedtests/concurrent/pthread/pthread_once_test.cfa
The file was removedtests/concurrent/waitfor/barge.cfa
The file was removedtests/concurrent/pthread/bounded_buffer.cfa
The file was addedtests/concurrency/unified_locking/.expect/block_spin_lock.txt
The file was addedtests/concurrency/futures/typed.cfa
The file was addedtests/concurrency/unified_locking/mcs_block_spin_lock.cfa
The file was removedtests/concurrent/once.cfa
The file was addedtests/concurrency/actors/static.cfa
The file was addedtests/concurrency/waitfor/recurse.cfa
The file was addedtests/concurrency/channels/.expect/daisy_chain.txt
The file was removedtests/concurrent/.expect/clib_tls.txt
The file was removedtests/concurrent/park/.expect/start_parked.txt
The file was removedtests/concurrent/actors/dynamic.cfa
The file was addedtests/concurrency/waitfor/.expect/statment.txt
The file was removedtests/concurrent/waituntil/locks.cfa
The file was addedtests/concurrency/actors/.expect/poison.txt
The file was removedtests/concurrent/pthread/.expect/pthread_attr_test.txt
The file was addedtests/concurrency/channels/contend.cfa
The file was removedtests/concurrent/readyQ/leader_spin.cfa
The file was removedtests/concurrent/futures/typed.cfa
The file was removedtests/concurrent/waitfor/recurse.cfa
The file was removedtests/concurrent/signal/disjoint.cfa
The file was removedtests/concurrent/examples/.expect/matrixSum.txt
The file was removedtests/concurrent/waitfor/parse.cfa
The file was addedtests/concurrency/unified_locking/mutex_test.hfa
The file was addedtests/concurrency/actors/.expect/executor.txt
The file was addedtests/concurrency/examples/datingService.cfa
The file was addedtests/concurrency/actors/.expect/dynamic.txt
The file was removedtests/concurrent/waituntil/.expect/basic_else.txt
The file was addedtests/concurrency/.expect/preempt.txt
The file was removedtests/concurrent/pthread/.expect/pthread_key_test.txt
The file was addedtests/concurrency/unified_locking/.expect/simple_owner_lock.txt
The file was removedtests/concurrent/actors/executor.cfa
The file was removedtests/concurrent/examples/quickSort.cfa
The file was addedtests/concurrency/examples/.expect/datingService.txt
The file was addedtests/concurrency/signal/.expect/disjoint.txt
The file was addedtests/concurrency/pthread/.expect/bounded_buffer.x64.txt
The file was addedtests/concurrency/joinerror.cfa
The file was addedtests/concurrency/mutexstmt/locks.cfa
The file was addedtests/concurrency/unified_locking/block_spin_lock.cfa
The file was addedtests/concurrency/futures/select_future.cfa
The file was addedtests/concurrency/examples/boundedBufferTHREAD.cfa
The file was addedtests/concurrency/unified_locking/.expect/timeout_lock.txt
The file was removedtests/concurrent/barrier/order.cfa
The file was addedtests/concurrency/.expect/clib_tls.txt
The file was removedtests/concurrent/keywordErrors.cfa
The file was addedtests/concurrency/examples/.expect/quickSort.txt
The file was addedtests/concurrency/actors/executor.cfa
The file was addedtests/concurrency/barrier/last.cfa
The file was removedtests/concurrent/preempt.cfa
The file was addedtests/concurrency/actors/.expect/matrix.txt
The file was removedtests/concurrent/mutexstmt/.expect/monitors.txt
The file was removedtests/concurrent/channels/barrier.cfa
The file was addedtests/concurrency/actors/matrix.cfa
The file was addedtests/concurrency/actors/poison.cfa
The file was addedtests/concurrency/pthread/.expect/bounded_buffer.x86.txt
The file was removedtests/concurrent/actors/.expect/inherit.txt
The file was addedtests/concurrency/waituntil/one_chan.cfa
The file was addedtests/concurrency/pthread/pthread_demo_create_join.cfa
The file was addedtests/concurrency/unified_locking/.expect/futex_mutex.txt
The file was removedtests/concurrent/.expect/sleep.txt
The file was addedtests/concurrency/actors/dynamic.cfa
The file was addedtests/concurrency/barrier/gen_generation_expect.cfa
The file was addedtests/concurrency/actors/.expect/inherit.txt
The file was addedtests/concurrency/park/.expect/force_preempt.txt
The file was removedtests/concurrent/.expect/join.txt
The file was addedtests/concurrency/channels/pub_sub.cfa
The file was addedtests/concurrency/thread.cfa
The file was addedtests/concurrency/waitfor/else.cfa
The file was removedtests/concurrent/waituntil/.expect/futures.txt
The file was addedtests/concurrency/futures/.expect/multi.txt
The file was addedtests/concurrency/.expect/keywordErrors.txt
The file was removedtests/concurrent/channels/ping_pong.cfa
The file was addedtests/concurrency/futures/abandon.cfa
The file was addedtests/concurrency/barrier/order.cfa
The file was removedtests/concurrent/waitfor/.expect/statment.txt
The file was removedtests/concurrent/unified_locking/block_spin_lock.cfa
The file was removedtests/concurrent/unified_locking/locks.cfa
The file was addedtests/concurrency/examples/.expect/boundedBufferINT.txt
The file was addedtests/concurrency/unified_locking/.expect/mcs.txt
The file was removedtests/concurrent/.expect/keywordErrors.txt
The file was addedtests/concurrency/futures/.expect/wait_any.txt
The file was removedtests/concurrent/clib_tls.c
The file was removedtests/concurrent/examples/.expect/quickSort.txt
The file was addedtests/concurrency/channels/.expect/ping_pong.txt
The file was addedtests/concurrency/cluster.cfa
The file was removedtests/concurrent/futures/.expect/abandon.txt
The file was addedtests/concurrency/mutexstmt/.expect/monitors.txt
The file was removedtests/concurrent/signal/.expect/wait.txt
The file was removedtests/concurrent/readyQ/.expect/leader_spin.txt
The file was removedtests/concurrent/sleep.cfa
The file was removedtests/concurrent/unified_locking/exp_backoff.cfa
The file was addedtests/concurrency/pthread/pthread_attr_test.cfa
The file was removedtests/concurrent/coroutineYield.cfa
The file was addedtests/concurrency/.expect/suspend_then.txt
The file was removedtests/concurrent/.expect/ctor-check.txt
The file was removedtests/concurrent/park/.expect/force_preempt.txt
The file was removedtests/concurrent/unified_locking/.expect/timeout_lock.txt
The file was removedtests/concurrent/channels/zero_size.cfa
The file was removedtests/concurrent/examples/.expect/boundedBufferEXT.txt
The file was removedtests/concurrent/unified_locking/mcs.cfa
The file was removedtests/concurrent/signal/wait.cfa
The file was removedtests/concurrent/unified_locking/.expect/fast_block_lock.txt
The file was removedtests/concurrent/barrier/gen_generation_expect.cfa
The file was removedtests/concurrent/channels/.expect/daisy_chain.txt
The file was addedtests/concurrency/park/.expect/contention.txt
The file was removedtests/concurrent/mutexstmt/monitors.cfa
The file was removedtests/concurrent/futures/multi.cfa
The file was removedtests/concurrent/examples/.in/quickSort.txt
The file was removedtests/concurrent/readyQ/barrier_sleeper.cfa
The file was removedtests/concurrent/.expect/thread.txt
The file was removedtests/concurrent/examples/boundedBufferEXT.cfa
The file was addedtests/concurrency/unified_locking/.expect/exp_backoff.txt
The file was addedtests/concurrency/waituntil/all_types.cfa
The file was removedtests/concurrent/.expect/coroutineYield.txt
The file was removedtests/concurrent/unified_locking/.expect/locks.txt
The file was removedtests/concurrent/waitfor/statment.cfa
The file was addedtests/concurrency/channels/.expect/pub_sub.txt
The file was removedtests/concurrent/actors/.expect/matrix.txt
The file was removedtests/concurrent/pthread/.expect/pthread_cond_test.txt
The file was addedtests/concurrency/signal/.expect/block.txt
The file was addedtests/concurrency/waitfor/statment.cfa
The file was addedtests/concurrency/readyQ/.expect/leader_spin.txt
The file was removedtests/concurrent/unified_locking/.expect/exp_backoff.txt
The file was removedtests/concurrent/readyQ/.expect/barrier_sleeper.txt
The file was addedtests/concurrency/waituntil/.expect/timeout.txt
The file was removedtests/concurrent/channels/pub_sub.cfa
The file was removedtests/concurrent/pthread/pthread_cond_test.cfa
The file was addedtests/concurrency/waitfor/.expect/parse.txt
The file was addedtests/concurrency/pthread/.expect/pthread_attr_test.txt
The file was addedtests/concurrency/channels/parallel_harness.hfa
The file was addedtests/concurrency/waituntil/channel_zero_size.cfa
The file was removedtests/concurrent/waituntil/.expect/all_types.txt
The file was addedtests/concurrency/once.cfa
The file was removedtests/concurrent/channels/.expect/churn.txt
The file was removedtests/concurrent/waitfor/.expect/barge.txt
The file was removedtests/concurrent/waituntil/futures.cfa
The file was removedtests/concurrent/waituntil/channels.cfa
The file was removedtests/concurrent/unified_locking/.expect/mcs.txt
The file was addedtests/concurrency/examples/quickSort.cfa
The file was removedtests/concurrent/futures/.expect/basic.txt
The file was addedtests/concurrency/waitfor/when.cfa
The file was addedtests/concurrency/futures/.expect/basic.txt
The file was removedtests/concurrent/channels/hot_potato.cfa
The file was removedtests/concurrent/waituntil/.expect/timeout.txt
The file was addedtests/concurrency/monitor.cfa
The file was addedtests/concurrency/channels/.expect/big_elems.txt
The file was addedtests/concurrency/examples/multiSort.cfa
The file was addedtests/concurrency/unified_locking/timeout_lock.cfa
The file was addedtests/concurrency/pthread/bounded_buffer.cfa
The file was addedtests/concurrency/barrier/generation.cfa
The file was removedtests/concurrent/.expect/clib.txt
The file was addedtests/concurrency/migrate.cfa
The file was addedtests/concurrency/pthread/pthread_demo_lock.cfa
The file was removedtests/concurrent/mutexstmt/.expect/locks.txt
The file was removedtests/concurrent/.expect/lockfree_stack.txt
The file was addedtests/concurrency/.expect/coroutineYield.txt
The file was addedtests/concurrency/waituntil/.expect/one_chan.txt
The file was addedtests/concurrency/waitfor/simple.cfa
The file was removedtests/concurrent/waituntil/.expect/channel_zero_size.txt
The file was removedtests/concurrent/unified_locking/.expect/mcs_block_spin_lock.txt
The file was removedtests/concurrent/.expect/migrate.txt
The file was addedtests/concurrency/ctor-check.cfa
The file was addedtests/concurrency/futures/.expect/typed.txt
The file was removedtests/concurrent/actors/.expect/executor.txt
The file was removedtests/concurrent/unified_locking/thread_test.cfa
The file was addedtests/concurrency/waituntil/basic_else.cfa
The file was addedtests/concurrency/examples/.expect/matrixSum.txt
The file was removedtests/concurrent/pthread/.expect/pthread_once_test.txt
The file was addedtests/concurrency/signal/wait.cfa
The file was addedtests/concurrency/waituntil/channel_close.cfa
The file was addedtests/concurrency/park/force_preempt.cfa
The file was removedtests/concurrent/monitor.cfa
The file was addedtests/concurrency/actors/.expect/pingpong.txt
The file was addedtests/concurrency/.expect/cluster.txt
The file was addedtests/concurrency/pthread/.expect/pthread_demo_lock.txt
The file was addedtests/concurrency/unified_locking/locks.cfa
The file was addedtests/concurrency/waitfor/barge.cfa
The file was addedtests/concurrency/pthread/.expect/pthread_cond_test.txt
The file was addedtests/concurrency/waituntil/.expect/basic_else.txt
The file was addedtests/concurrency/actors/.expect/types.txt
The file was addedtests/concurrency/channels/.expect/churn.txt
The file was addedtests/concurrency/actors/types.cfa
The file was addedtests/concurrency/.expect/once.txt
The file was addedtests/concurrency/pthread/.expect/pthread_demo_create_join.txt
The file was removedtests/concurrent/unified_locking/timeout_lock.cfa
The file was removedtests/concurrent/park/contention.cfa
The file was addedtests/concurrency/waitfor/.expect/dtor.txt
The file was addedtests/concurrency/waitfor/.expect/barge.txt
The file was addedtests/concurrency/waitfor/.expect/else.txt
The file was addedtests/concurrency/channels/hot_potato.cfa
The file was addedtests/concurrency/channels/.expect/zero_size.txt
The file was removedtests/concurrent/lockfree_stack.cfa
The file was removedtests/concurrent/park/force_preempt.cfa
The file was addedtests/concurrency/unified_locking/spin_queue_lock.cfa
The file was addedtests/concurrency/waituntil/.expect/futures.txt
The file was addedtests/concurrency/examples/.expect/gortn.txt
The file was removedtests/concurrent/unified_locking/.expect/spin_queue_lock.txt
The file was removedtests/concurrent/barrier/last.cfa
The file was addedtests/concurrency/futures/wait_any.cfa
The file was addedtests/concurrency/.expect/preempt2.txt
The file was removedtests/concurrent/unified_locking/.expect/pthread_locks.txt
The file was removedtests/concurrent/unified_locking/test_debug.cfa
The file was addedtests/concurrency/examples/boundedBufferEXT.cfa
The file was removedtests/concurrent/waituntil/all_types.cfa
The file was addedtests/concurrency/.expect/sleep.txt
The file was addedtests/concurrency/join.cfa
The file was addedtests/concurrency/.expect/mainError.txt
The file was removedtests/concurrent/channels/big_elems.cfa
The file was addedtests/concurrency/futures/multi.cfa
The file was removedtests/concurrent/migrate.cfa
The file was addedtests/concurrency/coroutineYield.cfa
The file was addedtests/concurrency/pthread/pthread_once_test.cfa
The file was removedtests/concurrent/preempt2.cfa
The file was addedtests/concurrency/unified_locking/simple_owner_lock.cfa
The file was removedtests/concurrent/suspend_then.cfa
The file was removedtests/concurrent/waituntil/.expect/one_chan.txt
The file was addedtests/concurrency/examples/quickSort.generic.cfa
The file was removedtests/concurrent/channels/.expect/hot_potato.txt
The file was removedtests/concurrent/unified_locking/spintest.cfa
The file was removedtests/concurrent/.expect/multi-monitor.txt
The file was removedtests/concurrent/park/start_parked.cfa
The file was removedtests/concurrent/unified_locking/fast_block_lock.cfa
The file was addedtests/concurrency/examples/matrixSum.cfa
The file was removedtests/concurrent/mainError.cfa
The file was removedtests/concurrent/pthread/.expect/bounded_buffer.x86.txt
The file was removedtests/concurrent/futures/basic.cfa
The file was removedtests/concurrent/channels/parallel_harness.hfa
The file was addedtests/concurrency/lockfree_stack.cfa
The file was removedtests/concurrent/futures/.expect/multi.txt
The file was removedtests/concurrent/.expect/monitor.txt
The file was removedtests/concurrent/futures/wait_any.cfa
The file was addedtests/concurrency/suspend_then.cfa
The file was removedtests/concurrent/.expect/suspend_then.txt
The file was addedtests/concurrency/waituntil/.expect/channels.txt
The file was removedtests/concurrent/actors/inherit.cfa
The file was addedtests/concurrency/park/.expect/start_parked.txt
Commit 98edf2f96038aa20f9ca3944a3c547669d824bf0 by Peter Buhr
found further uses of concurrent directory
The file was modifiedbenchmark/Makefile.am
Commit 6b1c4f2b7e0190ae0c36b5f7fc2c04f4626f49f2 by Peter Buhr
fix spelling mistake of concurrency
The file was modifiedtests/Makefile.am
Commit b2fa3c21fd80cbfee17d58ed9945fc3138b226d8 by Peter Buhr
fix comments referring to concurrency directory
The file was modifiedtests/concurrency/barrier/generation.cfa
The file was modifiedtests/concurrency/readyQ/barrier_sleeper.cfa
The file was modifiedtests/concurrency/barrier/last.cfa
The file was modifiedtests/concurrency/readyQ/leader_spin.cfa
The file was modifiedtests/concurrency/barrier/gen_generation_expect.cfa
The file was modifiedtests/concurrency/barrier/order.cfa