summaryrefslogtreecommitdiff
path: root/include/inspircd.h
diff options
context:
space:
mode:
authorAttila Molnar <attilamolnar@hush.com>2016-06-17 12:04:12 +0200
committerAttila Molnar <attilamolnar@hush.com>2016-06-17 12:04:12 +0200
commit925afed1b90871a52fb19f0ee2cb99cd26a53bae (patch)
treebe77dd198b7725a3709f2a387b3094b0bfcc547f /include/inspircd.h
parentcb43342a295c6ab01d3895dd4bf21af60b76adaa (diff)
Don't exit on rehash if the pid file cannot be written
Diffstat (limited to 'include/inspircd.h')
-rw-r--r--include/inspircd.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/inspircd.h b/include/inspircd.h
index e2eaf8292..78348ed54 100644
--- a/include/inspircd.h
+++ b/include/inspircd.h
@@ -779,9 +779,10 @@ class CoreExport InspIRCd
/** Attempt to write the process id to a given file
* @param filename The PID file to attempt to write to
+ * @param exitonfail If true and the PID fail cannot be written log to stdout and exit, otherwise only log on failure
* @return This function may bail if the file cannot be written
*/
- void WritePID(const std::string &filename);
+ void WritePID(const std::string& filename, bool exitonfail = true);
/** This constructor initialises all the subsystems and reads the config file.
* @param argc The argument count passed to main()