-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathMakefile.config
34 lines (33 loc) · 1.07 KB
/
Makefile.config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# Format: {A}_{S}
# A = algorithm name, lowercase, without space (must match the src/*.c and src/*.h name)
# S = waiting strategy. original = hardcoded in the algorithm (see README), otherwise spinlock/spin_then_park/park
ALGORITHMS=mcs_spinlock \
mcsepfl_original \
mcs_spin_then_park \
mcstp_original \
spinlock_original \
spinlockepfl_original \
malthusian_spinlock \
malthusian_spin_then_park \
ttas_original \
ttasepfl_original \
ticket_original \
ticketepfl_original \
clh_spinlock \
clh_spin_then_park \
clhepfl_original \
backoff_original \
empty_original \
pthreadinterpose_original \
pthreadadaptive_original \
concurrency_original \
htlockepfl_original \
alockepfl_original \
hmcs_original \
hyshmcs_original \
cbomcs_spinlock \
cbomcs_spin_then_park \
cptltkt_original \
ctkttkt_original \
partitioned_original \
mutexee_original