summaryrefslogtreecommitdiff
path: root/src/core/transaction.h
Commit message (Collapse)AuthorAge
* core: convert PID 1 to libsystemd-busLennart Poettering2013-11-20
| | | | | | | | | | | | | | | | | | | | | | This patch converts PID 1 to libsystemd-bus and thus drops the dependency on libdbus. The only remaining code using libdbus is a test case that validates our bus marshalling against libdbus' marshalling, and this dependency can be turned off. This patch also adds a couple of things to libsystem-bus, that are necessary to make the port work: - Synthesizing of "Disconnected" messages when bus connections are severed. - Support for attaching multiple vtables for the same interface on the same path. This patch also fixes the SetDefaultTarget() and GetDefaultTarget() bus calls which used an inappropriate signature. As a side effect we will now generate PropertiesChanged messages which carry property contents, rather than just invalidation information.
* use #pragma once instead of foo*foo define guardsShawn Landden2013-11-18
|
* core, systemctl: add support for irreversible jobsMichal Schmidt2013-02-22
| | | | | | | Add a new job mode: replace-irreversibly. Jobs enqueued using this mode cannot be implicitly canceled by later enqueued conflicting jobs. They can however still be canceled with an explicit "systemctl cancel" call.
* transaction: add missing emacs and license headersLennart Poettering2012-04-22
|
* transaction: remove the anchor linkMichal Schmidt2012-04-20
| | | | tr->anchor_job is sufficient.
* transaction: maintain anchor_jobMichal Schmidt2012-04-20
| | | | Track which job is the anchor in the transaction.
* manager: split transaction.[ch]Michal Schmidt2012-04-20
manager.c takes care of the main loop, unit management, signal handling, ... transaction.c computes transactions. After split: manager.c: 65 KB transaction.c: 40 KB