Skip to content

Commit b2e9237

Browse files
committed
Added simple documentation and command usage flag
1 parent b598b8f commit b2e9237

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

cppexperiments/testhle.cc

+21
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
#include <stdio.h>
1414
#include <stdlib.h>
1515
#include <iostream>
16+
#include <string>
1617
#include <thread>
1718
#include <chrono>
1819
#include <vector>
@@ -40,13 +41,21 @@ class CustomMutex {
4041
virtual ~CustomMutex() {}
4142
};
4243

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+
*/
4349
class NoMutex : public CustomMutex {
4450
public:
4551
string gettype() {
4652
return "NoMutex";
4753
}
4854
};
4955

56+
/**
57+
* @brief Simply a proxy for the standard \a std::mutex.
58+
*/
5059
class SystemMutex : public CustomMutex {
5160
std::mutex m;
5261
public:
@@ -63,6 +72,9 @@ class SystemMutex : public CustomMutex {
6372
}
6473
};
6574

75+
/**
76+
* @brief A very basic spin mutex implementation.
77+
*/
6678
class SpinMutex : public CustomMutex {
6779
int val = 0;
6880
public:
@@ -222,6 +234,15 @@ int main(int argc, char *argv[]) {
222234
int loops = DEFAULT_LOOP_ATTEMPTS;
223235
int rounds = DEFAULT_ROUNDS;
224236

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+
225246
if (argc > 1) {
226247
num_threads = atoi(argv[1]);
227248
}

0 commit comments

Comments
 (0)