Added option --no-huge-pages.

This commit is contained in:
XMRig 2017-08-16 14:21:12 +03:00
parent 27f02d5f9f
commit 8bba0df054
6 changed files with 28 additions and 5 deletions

View file

@ -57,6 +57,7 @@ public:
inline bool background() const { return m_background; }
inline bool colors() const { return m_colors; }
inline bool doubleHash() const { return m_doubleHash; }
inline bool hugePages() const { return m_hugePages; }
inline bool syslog() const { return m_syslog; }
inline const char *logFile() const { return m_logFile; }
inline const char *userAgent() const { return m_userAgent; }
@ -102,6 +103,7 @@ private:
bool m_background;
bool m_colors;
bool m_doubleHash;
bool m_hugePages;
bool m_ready;
bool m_safe;
bool m_syslog;