Lock file
From Just Solve the File Format Problem
(Difference between revisions)
m (lock file file lock clarification) |
m |
||
Line 7: | Line 7: | ||
=Introduction= | =Introduction= | ||
A lock file is used by an application to indicate there is something going on. For example, to prevent an application to be started twice. Not to be confused with a [[File lock]], although a lock file often has a file lock. | A lock file is used by an application to indicate there is something going on. For example, to prevent an application to be started twice. Not to be confused with a [[File lock]], although a lock file often has a file lock. | ||
+ | |||
+ | Often a lock file is empty (0 bytes), but it can contain data such as the [[PID (Process ID)]]. |
Revision as of 21:50, 5 December 2012
Introduction
A lock file is used by an application to indicate there is something going on. For example, to prevent an application to be started twice. Not to be confused with a File lock, although a lock file often has a file lock.
Often a lock file is empty (0 bytes), but it can contain data such as the PID (Process ID).