diff options
| author | Gavin Andresen <[email protected]> | 2011-04-15 12:09:50 -0400 |
|---|---|---|
| committer | Gavin Andresen <[email protected]> | 2011-04-15 12:09:50 -0400 |
| commit | bf3a0902ef98365d803e4a03853dbf0f83511026 (patch) | |
| tree | 02957d6a4731a99b93232631285b363ad85d1dcb /util.cpp | |
| parent | Merge branch 'localefix' (diff) | |
| parent | pidfile support for daemon (diff) | |
| download | discoin-bf3a0902ef98365d803e4a03853dbf0f83511026.tar.xz discoin-bf3a0902ef98365d803e4a03853dbf0f83511026.zip | |
Merge branch 'master' of https://github.com/gjs278/bitcoin
Diffstat (limited to 'util.cpp')
| -rw-r--r-- | util.cpp | 19 |
1 files changed, 19 insertions, 0 deletions
@@ -747,6 +747,25 @@ void ReadConfigFile(map<string, string>& mapSettingsRet, } } +string GetPidFile() +{ + namespace fs = boost::filesystem; + fs::path pathConfig(GetArg("-pid", "bitcoind.pid")); + if (!pathConfig.is_complete()) + pathConfig = fs::path(GetDataDir()) / pathConfig; + return pathConfig.string(); +} + +void CreatePidFile(string pidFile, pid_t pid) +{ + FILE* file; + if (file = fopen(pidFile.c_str(), "w")) + { + fprintf(file, "%d\n", pid); + fclose(file); + } +} + int GetFilesize(FILE* file) { int nSavePos = ftell(file); |