diff options
Diffstat (limited to 'src/entropy/unix_procs/unix_cmd.h')
-rw-r--r-- | src/entropy/unix_procs/unix_cmd.h | 11 |
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; }; |