diff options
| author | gjs278 <[email protected]> | 2011-04-12 19:15:19 -0500 |
|---|---|---|
| committer | root <root@Gentoo.(none)> | 2011-04-12 19:15:19 -0500 |
| commit | 66fb32d267d90fe2e1f652570bc45aba26be55fa (patch) | |
| tree | f56704c64f01faab35d3e781a836702e6ad9f8e7 /init.cpp | |
| parent | Merge branch 'listimmature' of /Users/gavin/src/gavin_btc (diff) | |
| download | discoin-66fb32d267d90fe2e1f652570bc45aba26be55fa.tar.xz discoin-66fb32d267d90fe2e1f652570bc45aba26be55fa.zip | |
pidfile support for daemon
Diffstat (limited to 'init.cpp')
| -rw-r--r-- | init.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -41,6 +41,7 @@ void Shutdown(void* parg) DBFlush(false); StopNode(); DBFlush(true); + boost::filesystem::remove(GetPidFile()); CreateThread(ExitTimeout, NULL); Sleep(50); printf("Bitcoin exiting\n\n"); @@ -151,6 +152,7 @@ bool AppInit2(int argc, char* argv[]) " bitcoin [options] help <command> \t\t " + _("Get help for a command\n") + _("Options:\n") + " -conf=<file> \t\t " + _("Specify configuration file (default: bitcoin.conf)\n") + + " -pid=<file> \t\t " + _("Specify pid file (default: bitcoind.pid)\n") + " -gen \t\t " + _("Generate coins\n") + " -gen=0 \t\t " + _("Don't generate coins\n") + " -min \t\t " + _("Start minimized\n") + @@ -251,7 +253,10 @@ bool AppInit2(int argc, char* argv[]) return false; } if (pid > 0) + { + CreatePidFile(GetPidFile(), pid); return true; + } pid_t sid = setsid(); if (sid < 0) |