Up to [cvs.netbsd.org] / pkgsrc / devel / libdaemon
Request diff between arbitrary revisions
Default branch: MAIN
Revision 1.7 / (download) - annotate - [select for diffs], Sun Dec 20 23:29:02 2009 UTC (2 years, 5 months ago) by tnn
Branch: MAIN
CVS Tags: pkgsrc-2012Q1-base,
pkgsrc-2012Q1,
pkgsrc-2011Q4-base,
pkgsrc-2011Q4,
pkgsrc-2011Q3-base,
pkgsrc-2011Q3,
pkgsrc-2011Q2-base,
pkgsrc-2011Q2,
pkgsrc-2011Q1-base,
pkgsrc-2011Q1,
pkgsrc-2010Q4-base,
pkgsrc-2010Q4,
pkgsrc-2010Q3-base,
pkgsrc-2010Q3,
pkgsrc-2010Q2-base,
pkgsrc-2010Q2,
pkgsrc-2010Q1-base,
pkgsrc-2010Q1,
pkgsrc-2009Q4-base,
pkgsrc-2009Q4,
HEAD
Changes since 1.6: +2 -1
lines
Diff to previous 1.6 (colored)
portability fix: include <unistd.h> instead of <sys/unistd.h>
Revision 1.6 / (download) - annotate - [select for diffs], Sun Dec 20 23:22:35 2009 UTC (2 years, 5 months ago) by tnn
Branch: MAIN
Changes since 1.5: +2 -1
lines
Diff to previous 1.5 (colored)
Don't feed CFLAGS to linker when building example program.
Revision 1.5 / (download) - annotate - [select for diffs], Sat Oct 31 02:54:34 2009 UTC (2 years, 6 months ago) by wiz
Branch: MAIN
Changes since 1.4: +4 -5
lines
Diff to previous 1.4 (colored)
Update to 0.14: add daemon_set_verbosity() call; numerous updates
Revision 1.4 / (download) - annotate - [select for diffs], Tue Aug 18 05:40:44 2009 UTC (2 years, 9 months ago) by hasso
Branch: MAIN
CVS Tags: pkgsrc-2009Q3-base,
pkgsrc-2009Q3
Changes since 1.3: +2 -2
lines
Diff to previous 1.3 (colored)
More portable fix for upper bound for signals problem pulled out from upstream git repo. Should fix build on Solaris, FreeBSD and DragonFly. If there is still need for Darwin specific fix with __DARWIN_NSIG (there is no NSIG or it's semantically different like NSIG and _NSIG in Linux), please add it back.
Revision 1.3 / (download) - annotate - [select for diffs], Mon Aug 17 10:26:17 2009 UTC (2 years, 9 months ago) by tron
Branch: MAIN
Changes since 1.2: +2 -1
lines
Diff to previous 1.2 (colored)
Fix build problem under Mac OS X (Leopard?).
Revision 1.2 / (download) - annotate - [select for diffs], Sun Aug 16 14:24:01 2009 UTC (2 years, 9 months ago) by wiz
Branch: MAIN
Changes since 1.1: +4 -4
lines
Diff to previous 1.1 (colored)
Update to 0.13, set LICENSE. Add daemon_reset_sigs() and daemon_unblock_sigs() calls for resetting signal handlers to sensible states; improve error handling.
Revision 1.1.1.1 / (download) - annotate - [select for diffs] (vendor branch), Sat Dec 20 17:24:48 2008 UTC (3 years, 5 months ago) by ahoka
Branch: TNF
CVS Tags: pkgsrc-base,
pkgsrc-2009Q2-base,
pkgsrc-2009Q2,
pkgsrc-2009Q1-base,
pkgsrc-2009Q1,
pkgsrc-2008Q4-base,
pkgsrc-2008Q4
Changes since 1.1: +0 -0
lines
Diff to previous 1.1 (colored)
Import libdaemon-0.12 as devel/libdaemon. libdaemon is a lightweight C library that eases the writing of UNIX daemons. It consists of the following parts: * A wrapper around fork() which does the correct daemonization procedure of a process * A wrapper around syslog() for simpler and compatible log output to Syslog or STDERR * An API for writing PID files * An API for serializing UNIX signals into a pipe for usage with select() or poll() * An API for running subprocesses with STDOUT and STDERR redirected to syslog. APIs like these are used in most daemon software available. It is not that simple to get it done right and code duplication is not a goal.
Revision 1.1 / (download) - annotate - [select for diffs], Sat Dec 20 17:24:48 2008 UTC (3 years, 5 months ago) by ahoka
Branch: MAIN
Initial revision