summaryrefslogtreecommitdiff
path: root/src/python-systemd/_journal.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
|
* util: use alloca0() intead of alloca() + memzero()Lennart Poettering2014-01-31
|
* use memzero(foo, length); for all memset(foo, 0, length); callsGreg KH2014-01-31
| | | | | | | | In trying to track down a stupid linker bug, I noticed a bunch of memset() calls that should be using memzero() to make it more "obvious" that the options are correct (i.e. 0 is not the length, but the data to set). So fix up all current calls to memset(foo, 0, length) to memzero(foo, length).
* systemd-python: add __version__ stringsZbigniew Jędrzejewski-Szmek2013-05-08
|
* systemd-python: small cleanupsZbigniew Jędrzejewski-Szmek2013-03-19
| | | | | | - separate methods with two empty lines for clarity - avoid malloc(0) by specyfing private data size as -1 - add method name in error messages
* python: add systemd.id128 moduleZbigniew Jędrzejewski-Szmek2013-02-22
| | | | uuid.UUIDs are utilized to hold UUID values.
* systemd-python: fix nesting of #ifs and #pragmasZbigniew Jędrzejewski-Szmek2012-11-13
|
* python: make gcc shut upLennart Poettering2012-09-13
|
* python: fix error handling, and allocate argument array on the stackLennart Poettering2012-09-13
|
* python: reindent to follow coding styleLennart Poettering2012-09-13
|
* python: change license to LGPL 2.1Lennart Poettering2012-09-13
| | | | | | The original license has been MIT for this code, but David Strauss (its original author) agreed to relicense it to LGPL 2.1 for inclusion in systemd.
* python: integrate David Strauss' python-systemd packageLennart Poettering2012-09-13