Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-07-31 | Always prefer our headers to system headers | Zbigniew Jędrzejewski-Szmek | |
In practice this shouldn't make much difference, but sometimes our headers might be newer, and we want to test them. | |||
2014-02-20 | macro: introduce nice macro for disabling -Wmissing-prototypes warnigs | Lennart Poettering | |
2014-01-31 | util: use alloca0() intead of alloca() + memzero() | Lennart Poettering | |
2014-01-31 | use memzero(foo, length); for all memset(foo, 0, length); calls | Greg KH | |
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). | |||
2013-05-08 | systemd-python: add __version__ strings | Zbigniew Jędrzejewski-Szmek | |
2013-03-19 | systemd-python: small cleanups | Zbigniew Jędrzejewski-Szmek | |
- separate methods with two empty lines for clarity - avoid malloc(0) by specyfing private data size as -1 - add method name in error messages | |||
2013-02-22 | python: add systemd.id128 module | Zbigniew Jędrzejewski-Szmek | |
uuid.UUIDs are utilized to hold UUID values. | |||
2012-11-13 | systemd-python: fix nesting of #ifs and #pragmas | Zbigniew Jędrzejewski-Szmek | |
2012-09-13 | python: make gcc shut up | Lennart Poettering | |
2012-09-13 | python: fix error handling, and allocate argument array on the stack | Lennart Poettering | |
2012-09-13 | python: reindent to follow coding style | Lennart Poettering | |
2012-09-13 | python: change license to LGPL 2.1 | Lennart Poettering | |
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. | |||
2012-09-13 | python: integrate David Strauss' python-systemd package | Lennart Poettering | |