Config.in 884 B

12345678910111213141516171819
  1. config ADK_PACKAGE_LIBDAEMON
  2. prompt "libdaemon......................... A lightweight C library that eases the writing of UNIX daemons"
  3. tristate
  4. default n
  5. help
  6. libdaemon is a lightweight C library that eases the writing of UNIX daemons.
  7. It consists of the following parts:
  8. * A wrapper around fork() which does the correct daemonization procedure of a process
  9. * A wrapper around syslog() for simpler and compatible log output to Syslog or STDERR
  10. * An API for writing PID files
  11. * An API for serializing UNIX signals into a pipe for usage with select() or poll()
  12. * An API for running subprocesses with STDOUT and STDERR redirected to syslog.
  13. APIs like these are used in most daemon software available. It is not that
  14. simple to get it done right and code duplication is not a goal.
  15. http://0pointer.de/lennart/projects/libdaemon/