diff options
author | Joey Hess <joeyh@joeyh.name> | 2015-11-12 17:47:31 -0400 |
---|---|---|
committer | Joey Hess <joeyh@joeyh.name> | 2015-11-12 17:50:34 -0400 |
commit | ba78630681ab7e987b70e67acaaf477912fe00bb (patch) | |
tree | ffe1202f212114fca535db22dba02de229d00330 /Locations.hs | |
parent | 00fdc3063fe586cdce35ba8dbe2f1b024479522c (diff) |
pid locking configuration and abstraction layer for git-annex
(not actually used anywhere yet)
Diffstat (limited to 'Locations.hs')
-rw-r--r-- | Locations.hs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Locations.hs b/Locations.hs index c3d9c7ab2..bcbac34db 100644 --- a/Locations.hs +++ b/Locations.hs @@ -51,6 +51,7 @@ module Locations ( gitAnnexViewLog, gitAnnexIgnoredRefs, gitAnnexPidFile, + gitAnnexPidLockFile, gitAnnexDaemonStatusFile, gitAnnexLogFile, gitAnnexFuzzTestLogFile, @@ -334,6 +335,10 @@ gitAnnexIgnoredRefs r = gitAnnexDir r </> "ignoredrefs" gitAnnexPidFile :: Git.Repo -> FilePath gitAnnexPidFile r = gitAnnexDir r </> "daemon.pid" +{- Pid lock file for pidlock mode -} +gitAnnexPidLockFile :: Git.Repo -> FilePath +gitAnnexPidLockFile r = gitAnnexDir r </> "pidlock" + {- Status file for daemon mode. -} gitAnnexDaemonStatusFile :: Git.Repo -> FilePath gitAnnexDaemonStatusFile r = gitAnnexDir r </> "daemon.status" |