Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enable random CPU migrations around mutex ops #9813

Closed
wants to merge 16 commits into from
Closed
Changes from all commits
Commits
Show all changes
16 commits
Select commit Hold shift + click to select a range
622bca2
Enable random CPU migrations around mutex ops
alexey-milovidov Mar 22, 2020
9f82ca5
Merge branch 'master' into thread-fuzzer-random-migrations-mutex
alexey-milovidov May 17, 2020
da7fa82
Fix build
alexey-milovidov May 18, 2020
05eed28
Merge branch 'master' into thread-fuzzer-random-migrations-mutex
alexey-milovidov Jun 15, 2020
13fc156
Merge branch 'master' into thread-fuzzer-random-migrations-mutex
alexey-milovidov Jul 5, 2020
e412017
Merge branch 'master' into thread-fuzzer-random-migrations-mutex
alexey-milovidov Aug 28, 2020
182ae18
Merge branch 'master' into thread-fuzzer-random-migrations-mutex
alexey-milovidov Sep 16, 2020
3174ca0
Merge branch 'master' into thread-fuzzer-random-migrations-mutex
alexey-milovidov Dec 22, 2020
f97cfd0
Merge branch 'master' into thread-fuzzer-random-migrations-mutex
alexey-milovidov Jan 11, 2021
9ecd0fd
Merge branch 'master' into thread-fuzzer-random-migrations-mutex
mergify[bot] May 14, 2021
1f30dd6
Merge branch 'master' into thread-fuzzer-random-migrations-mutex
mergify[bot] May 27, 2021
7792f35
Merge branch 'master' into thread-fuzzer-random-migrations-mutex
mergify[bot] Jun 12, 2021
2602e83
Merge branch 'master' into thread-fuzzer-random-migrations-mutex
mergify[bot] Jun 29, 2021
e656a38
Merge branch 'master' into thread-fuzzer-random-migrations-mutex
mergify[bot] Jul 13, 2021
c20bf50
Merge branch 'master' into thread-fuzzer-random-migrations-mutex
mergify[bot] Aug 8, 2021
086a428
Merge branch 'master' into thread-fuzzer-random-migrations-mutex
mergify[bot] Aug 8, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 6 additions & 1 deletion src/Common/ThreadFuzzer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,12 @@ void ThreadFuzzer::initConfiguration()

FOR_EACH_WRAPPED_FUNCTION(INIT_WRAPPER_PARAMS)

# undef INIT_WRAPPER_PARAMS
#undef INIT_WRAPPER_PARAMS

pthread_mutex_lock_before_migrate_probability = 1;
pthread_mutex_lock_after_migrate_probability = 1;
pthread_mutex_unlock_before_migrate_probability = 1;
pthread_mutex_unlock_after_migrate_probability = 1;
#endif
}

Expand Down