aboutsummaryrefslogtreecommitdiffstats
path: root/src/entropy
diff options
context:
space:
mode:
authorlloyd <[email protected]>2010-06-21 16:12:04 +0000
committerlloyd <[email protected]>2010-06-21 16:12:04 +0000
commitce14ac149a3b3bf70b3554aeefcdb9de5976da34 (patch)
treee83b38f1c545dbdd0cda432144db23346562da85 /src/entropy
parentfe47c1cb19d6f3d1fb54f488cf08eb1830dda1e5 (diff)
Doxygen
Diffstat (limited to 'src/entropy')
-rw-r--r--src/entropy/unix_procs/unix_cmd.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/entropy/unix_procs/unix_cmd.h b/src/entropy/unix_procs/unix_cmd.h
index 3abca8f37..2dc55f6d7 100644
--- a/src/entropy/unix_procs/unix_cmd.h
+++ b/src/entropy/unix_procs/unix_cmd.h
@@ -27,8 +27,19 @@ struct Unix_Program
Unix_Program(const char* n, u32bit p)
{ name_and_args = n; priority = p; working = true; }
+ /**
+ * The name and arguments for this command
+ */
std::string name_and_args;
+
+ /**
+ * Priority: we scan from low to high
+ */
u32bit priority;
+
+ /**
+ * Does this source seem to be working?
+ */
bool working;
};