├── .gitignore ├── CHANGELOG.md ├── INSTALL ├── LICENSE.md ├── Makefile.in ├── README.md ├── acconfig.h ├── basename.c ├── config.h.in ├── configure ├── configure.in ├── daemon.c ├── daemonize.1 ├── daemonize.c ├── flock.c ├── flock.h ├── getopt.c ├── install-sh ├── setenv.c ├── strerror.c ├── testdaemon.c └── version.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmc/daemonize/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmc/daemonize/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmc/daemonize/HEAD/INSTALL -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmc/daemonize/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmc/daemonize/HEAD/Makefile.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmc/daemonize/HEAD/README.md -------------------------------------------------------------------------------- /acconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmc/daemonize/HEAD/acconfig.h -------------------------------------------------------------------------------- /basename.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmc/daemonize/HEAD/basename.c -------------------------------------------------------------------------------- /config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmc/daemonize/HEAD/config.h.in -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmc/daemonize/HEAD/configure -------------------------------------------------------------------------------- /configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmc/daemonize/HEAD/configure.in -------------------------------------------------------------------------------- /daemon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmc/daemonize/HEAD/daemon.c -------------------------------------------------------------------------------- /daemonize.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmc/daemonize/HEAD/daemonize.1 -------------------------------------------------------------------------------- /daemonize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmc/daemonize/HEAD/daemonize.c -------------------------------------------------------------------------------- /flock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmc/daemonize/HEAD/flock.c -------------------------------------------------------------------------------- /flock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmc/daemonize/HEAD/flock.h -------------------------------------------------------------------------------- /getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmc/daemonize/HEAD/getopt.c -------------------------------------------------------------------------------- /install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmc/daemonize/HEAD/install-sh -------------------------------------------------------------------------------- /setenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmc/daemonize/HEAD/setenv.c -------------------------------------------------------------------------------- /strerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmc/daemonize/HEAD/strerror.c -------------------------------------------------------------------------------- /testdaemon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmc/daemonize/HEAD/testdaemon.c -------------------------------------------------------------------------------- /version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmc/daemonize/HEAD/version.h --------------------------------------------------------------------------------