~ubuntu-branches/ubuntu/trusty/syslog-ng/trusty-proposed

« back to all changes in this revision

Viewing changes to lib/ivykis/lib/man3/iv_main.3

  • Committer: Package Import Robot
  • Author(s): Laszlo Boszormenyi (GCS), Gergely Nagy
  • Date: 2011-10-11 14:30:48 UTC
  • mfrom: (1.3.7)
  • Revision ID: package-import@ubuntu.com-20111011143048-r1iljux9xbvj3lwh
Tags: 3.3.1.dfsg-1
* New upstream release with important fixes from upstream git tree with
  non-free manpages removed.
* Drop syslog-ng.conf(5) (closes: #496521).
* syslog-ng(8) is generated, and does not mention -Q anymore
  (closes: #616069).
* Supports CAP_SYSLOG on recent kernels (closes: #630172).
* Does not use g_timeout_add_seconds anymore (closes: #609154).

[ Gergely Nagy <algernon@madhouse-project.org> ]
* Update debian/copyright to DEP-5 format.
* Simplified the logrotate file by merging identical entries.
* Include local configuration files from /etc/syslog-ng/conf.d/ (Closes:
  #609050).
* Update syslog-ng.conf to be fully 3.3 compliant.
* Compress both source and binaries (except the syslog-ng meta
  package) with xz, instead of gzip.
* Use dpkg triggers to restart syslog-ng when appropriate.
* Include DFSG-free manual pages for all binaries.
* Build with Hardening enabled.
* Mention syslog(3) in /etc/default/syslog-ng, instead of
  <linux/kernel.h> (Closes: #608605)
* Support 'status' in the init script.
  Patch from Peter Eisentraut <petere@debian.org> (Closes: #644458)
* Build-Depend on libevtlog-dev (>= 0.2.12-5~) for correct shlibs.
* Use [linux-any] in Build-Depends instead of hardcoded links.
  (Closes: #634715)
* Use $SYSLOGNG_OPTS in the init script when reloading syslog-ng.
  (Closes: #589081)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
.\" This man page is Copyright (C) 2003, 2010 Lennert Buytenhek.
 
2
.\" Permission is granted to distribute possibly modified copies
 
3
.\" of this page provided the header is included verbatim,
 
4
.\" and in case of nontrivial modification author and date
 
5
.\" of the modification is added to the header.
 
6
.TH iv_main 3 2010-08-15 "ivykis" "ivykis programmer's manual"
 
7
.SH NAME
 
8
iv_main \- enter the ivykis main loop
 
9
.SH SYNOPSIS
 
10
.B #include <iv.h>
 
11
.sp
 
12
.BI "void iv_main(void);"
 
13
.br
 
14
.SH DESCRIPTION
 
15
.B iv_main
 
16
enters the current thread's ivykis main loop.
 
17
.PP
 
18
The ivykis main loop consists of checking the status of the registered
 
19
file descriptors, timers and tasks, and either calling callback functions
 
20
corresponding to active objects, or blocking until an event arrives.
 
21
.PP
 
22
Each thread that wants to use ivykis must individually call
 
23
.B iv_main
 
24
to enter the ivykis main loop -- but only after having called
 
25
.BR iv_init (3)
 
26
earlier.
 
27
.SH "SEE ALSO"
 
28
.BR ivykis (3),
 
29
.BR iv_examples (3),
 
30
.BR iv_quit (3)