File tree 1 file changed +21
-0
lines changed
1 file changed +21
-0
lines changed Original file line number Diff line number Diff line change 13
13
#include < stdio.h>
14
14
#include < stdlib.h>
15
15
#include < iostream>
16
+ #include < string>
16
17
#include < thread>
17
18
#include < chrono>
18
19
#include < vector>
@@ -40,13 +41,21 @@ class CustomMutex {
40
41
virtual ~CustomMutex () {}
41
42
};
42
43
44
+
45
+ /* *
46
+ * @brief The anti-mutex that doesn't have any effect.
47
+ * The methods \a lock and \a unlock simply return immediately.
48
+ */
43
49
class NoMutex : public CustomMutex {
44
50
public:
45
51
string gettype () {
46
52
return " NoMutex" ;
47
53
}
48
54
};
49
55
56
+ /* *
57
+ * @brief Simply a proxy for the standard \a std::mutex.
58
+ */
50
59
class SystemMutex : public CustomMutex {
51
60
std::mutex m;
52
61
public:
@@ -63,6 +72,9 @@ class SystemMutex : public CustomMutex {
63
72
}
64
73
};
65
74
75
+ /* *
76
+ * @brief A very basic spin mutex implementation.
77
+ */
66
78
class SpinMutex : public CustomMutex {
67
79
int val = 0 ;
68
80
public:
@@ -222,6 +234,15 @@ int main(int argc, char *argv[]) {
222
234
int loops = DEFAULT_LOOP_ATTEMPTS;
223
235
int rounds = DEFAULT_ROUNDS;
224
236
237
+ // Search for help flags
238
+ for (int i = 1 ; i < argc; i++) {
239
+ string arg (argv[i]);
240
+ if (arg.compare (" -h" )==0 || arg.compare (" --help" )==0 ) {
241
+ cout << " Usage: testhle [num_threads] [loops] [rounds]" << endl;
242
+ exit (0 );
243
+ }
244
+ }
245
+
225
246
if (argc > 1 ) {
226
247
num_threads = atoi (argv[1 ]);
227
248
}
You can’t perform that action at this time.
0 commit comments