summaryrefslogtreecommitdiff
path: root/systemd/_journal.c
Commit message (Collapse)AuthorAgeFilesLines
* tree-wide: systemd→python-systemd in headersZbigniew Jędrzejewski-Szmek2015-08-071-3/+3
|
* Update LICENSE file and classifiersZbigniew Jędrzejewski-Szmek2015-07-051-1/+0
| | | | | | The license was originally MIT, but when this module became part of systemd, it was changed to LGPLv2+. All files had correct headers, so only the LICENSE file needs updating. Take the opportunity to add classifiers to setup.py.
* build-sys: update setup.py to build everythingZbigniew Jędrzejewski-Szmek2015-07-051-1/+2
|
* Always prefer our headers to system headersZbigniew Jędrzejewski-Szmek2015-07-051-1/+1
| | | | | | 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 Poettering2015-07-051-5/+4
|
* util: use alloca0() intead of alloca() + memzero()Lennart Poettering2015-07-051-2/+1
|
* use memzero(foo, length); for all memset(foo, 0, length); callsGreg KH2015-07-051-1/+2
| | | | | | | | 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-Szmek2015-07-051-2/+19
|
* systemd-python: small cleanupsZbigniew Jędrzejewski-Szmek2015-07-051-1/+1
| | | | | | - 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-Szmek2015-07-051-1/+1
| | | | uuid.UUIDs are utilized to hold UUID values.
* systemd-python: fix nesting of #ifs and #pragmasZbigniew Jędrzejewski-Szmek2015-07-051-2/+2
|
* python: make gcc shut upLennart Poettering2015-07-051-0/+5
|
* python: fix error handling, and allocate argument array on the stackLennart Poettering2015-07-051-28/+12
|
* python: reindent to follow coding styleLennart Poettering2015-07-051-96/+90
|
* python: change license to LGPL 2.1Lennart Poettering2015-07-051-0/+21
| | | | | | 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 Poettering2015-07-051-0/+3
|
* Fix for Python 3.David Strauss2012-09-061-1/+1
|
* Make installable.David Strauss2012-09-061-0/+134