summaryrefslogtreecommitdiff
path: root/src/python-systemd/_daemon.c
Commit message (Collapse)AuthorAge
* Always prefer our headers to system headersZbigniew Jędrzejewski-Szmek2014-07-31
| | | | | | In practice this shouldn't make much difference, but sometimes our headers might be newer, and we want to test them.
* macro: introduce nice macro for disabling -Wmissing-prototypes warnigsLennart Poettering2014-02-20
|
* systemd-python: fix listen_fds under Python 2Zbigniew Jędrzejewski-Szmek2013-12-30
|
* systemd-python: fix setting of exception codesZbigniew Jędrzejewski-Szmek2013-12-30
| | | | | | | The return value of 0 would be treated as failure by mistake, resulting in " SystemError: error return without exception set". The way that set_error() is used is changed to be the same everywhere.
* systemd-python: fix booted() and add two functions to docsZbigniew Jędrzejewski-Szmek2013-11-12
| | | | For some reason sphinx doesn't want to show inherited C functions.
* systemd-python: add support for sd_j_open_filesZbigniew Jędrzejewski-Szmek2013-07-17
| | | | Also export missing flags.
* systemd-python: wrap sd_notifyZbigniew Jędrzejewski-Szmek2013-07-05
| | | | | _listen_fds() is modified to accept unset_environment arg as keyword, to match new notify().
* systemd-python: wrap sd_login_monitorZbigniew Jędrzejewski-Szmek2013-05-09
|
* systemd-python: add __version__ stringsZbigniew Jędrzejewski-Szmek2013-05-08
|
* move _cleanup_ attribute in front of the typeHarald Hoyer2013-04-18
| | | | http://lists.freedesktop.org/archives/systemd-devel/2013-April/010510.html
* systemd-python: add systemd.daemon wrapping sd-daemonZbigniew Jędrzejewski-Szmek2013-03-15
Please see the documentation (e.g. pydoc3 systemd.daemon) for full description. As usual, systemd._daemon wraps the raw interface, while systemd.daemon provides the more pythonic API. sd_listen_fds, sd_booted, sd_is_fifo, sd_is_socket, sd_is_socket_unix, sd_is_socket_inet, sd_is_mq, and SD_LISTEN_FDS_START are currently wrapped.