Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-01-13 | libsystemd-bus: rename to libsystemd | Tom Gundersen | |
Documentation was updated to refer to either 'libsystemd' or 'sd-bus' in place of libsystemd-bus. | |||
2013-11-30 | bus: use "System.Error." as prefix for implicit errno bus errors | Lennart Poettering | |
We probably shouldn't use "Posix.Error" since many of the errors have nothing to do with Posix. | |||
2013-11-30 | bus: support temporarily const errors that don't need to be freed but ↵ | Lennart Poettering | |
require deep copies This should fix issues with incorrectly copying bus error messages out of sd_bus_message objects. Original bug found by: Djalal Harouni | |||
2013-11-22 | bus: rework sd_bus_error APIs | Lennart Poettering | |
All calls that set a sd_bus_error structure will now return the same error converted to a negative errno. This may be used as syntactic sugar to return from a function and setting a bus_error structure in one go. Also, translate all Linux Exyz (EIO, EINVAL, EUCLEAN, EPIPE, ...) automatically into counterparts in the (new) "Posix.Error." namespace. If we fail to allocate memory for the components of a sd_bus_error automatically reset it to an OOM error which we always can write. |