Crate pidfile

source ·
Expand description

Simple PID lock file management.

This is a very basic library for creating and using PID files to coordinate among processes.

Structs§

  • A PID file is a file that contains the PID of a process. It is used to prevent multiple instances of a process from running at the same time, or to provide a lock for a resource which should only be accessed by one process at a time.