diff options
author | lloyd <[email protected]> | 2008-04-10 05:50:57 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2008-04-10 05:50:57 +0000 |
commit | 59e71322cad61ff2f09664fc3e59b5446af4566a (patch) | |
tree | d6bf11f3541d891228f755eeb0a2fef1904852eb /modules/es_unix/unix_cmd.h | |
parent | a5cbd8f304d646352789686a659c6923e320f22d (diff) |
Remove severa global configuration variables related to entropy gathering,
instead passing those values as arguments.
Diffstat (limited to 'modules/es_unix/unix_cmd.h')
-rw-r--r-- | modules/es_unix/unix_cmd.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/modules/es_unix/unix_cmd.h b/modules/es_unix/unix_cmd.h index 42211b0a4..0e187db03 100644 --- a/modules/es_unix/unix_cmd.h +++ b/modules/es_unix/unix_cmd.h @@ -39,10 +39,11 @@ class DataSource_Command : public DataSource int fd() const; - DataSource_Command(const std::string&, const std::string&); + DataSource_Command(const std::string&, + const std::vector<std::string>& paths); ~DataSource_Command(); private: - void create_pipe(const std::string&); + void create_pipe(const std::vector<std::string>&); void shutdown_pipe(); const u32bit MAX_BLOCK_USECS, KILL_WAIT; |