summaryrefslogtreecommitdiffstats
path: root/extra.h
diff options
context:
space:
mode:
authorleochanj105 <leochanj@live.unc.edu>2021-10-19 21:31:21 -0400
committerleochanj105 <leochanj@live.unc.edu>2021-10-19 21:31:21 -0400
commit3d93f4751ea2d40babcff71c74effe12792abf4a (patch)
tree61b299ece80adf148092a3c6a3878ef0a9612b0b /extra.h
parent034d6209b6d27a8cf13784a62fd36814e98cadf6 (diff)
fix some problems
Diffstat (limited to 'extra.h')
-rw-r--r--extra.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/extra.h b/extra.h
index 1297038..5abb0c7 100644
--- a/extra.h
+++ b/extra.h
@@ -30,7 +30,7 @@ extern int sched_getcpu();
30#endif 30#endif
31 31
32// This is a proxy for "case study mode" now 32// This is a proxy for "case study mode" now
33#define LITMUS 1 33#define LITMUS 0
34#define MMDC_PROF 0 34#define MMDC_PROF 0
35 35
36#if LITMUS 36#if LITMUS
@@ -88,7 +88,7 @@ static void _rt_load_params_itrl(int argc, char **argv) {
88 if (argc != (9 + LITMUS*2) && argc != (10 + LITMUS*2)) { 88 if (argc != (9 + LITMUS*2) && argc != (10 + LITMUS*2)) {
89 fprintf(stderr, "Usage: %s <name> <loops> <my core> <other core> <other name> <runID> <save results?> <pairID>\n", argv[0]); 89 fprintf(stderr, "Usage: %s <name> <loops> <my core> <other core> <other name> <runID> <save results?> <pairID>\n", argv[0]);
90#else 90#else
91 if (argc != (6 + LITMUS*2)) { 91 if (argc != (7 + LITMUS*2)) {
92 fprintf(stderr, "Usage: %s <name> <loops> <my core> <runID> <save results?>\n", argv[0]); 92 fprintf(stderr, "Usage: %s <name> <loops> <my core> <runID> <save results?>\n", argv[0]);
93#endif /* PAIRED */ 93#endif /* PAIRED */
94 fprintf(stderr, " <name> string for logging. Name of this task.\n"); 94 fprintf(stderr, " <name> string for logging. Name of this task.\n");