Variable: org-persist-gc-lock-file

org-persist-gc-lock-file is a variable defined in org-persist.el.gz.

Value

"gc-lock.eld"

Documentation

File used to store information about active Emacs sessions.

The file contains an alist of (before-init-time . LAST-ACTIVE-TIME). before-init-time uniquely identifies Emacs process and LAST-ACTIVE-TIME is written every org-persist-gc-lock-interval seconds. When LAST-ACTIVE-TIME is more than org-persist-gc-lock-expiry seconds ago, that Emacs session is considered not active.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-persist.el.gz
(defconst org-persist-gc-lock-file "gc-lock.eld"
  "File used to store information about active Emacs sessions.
The file contains an alist of (`before-init-time' . LAST-ACTIVE-TIME).
`before-init-time' uniquely identifies Emacs process and
LAST-ACTIVE-TIME is written every `org-persist-gc-lock-interval'
seconds.  When LAST-ACTIVE-TIME is more than
`org-persist-gc-lock-expiry' seconds ago, that Emacs session is
considered not active.")