diff options
author | Michal Schmidt <mschmidt@redhat.com> | 2012-04-19 23:54:11 +0200 |
---|---|---|
committer | Michal Schmidt <mschmidt@redhat.com> | 2012-04-20 17:12:27 +0200 |
commit | 75778e21dfeee51036d24501e39ea7398fabe502 (patch) | |
tree | ee7edd4c9b65874f43252b078d27e9b2ffdad676 /src/core/manager.h | |
parent | 7527cb527598aaabf0ed9b38a352edb28536392a (diff) |
manager: split transaction.[ch]
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
Diffstat (limited to 'src/core/manager.h')
-rw-r--r-- | src/core/manager.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/core/manager.h b/src/core/manager.h index 2bf7b7ae5e..20b743ab35 100644 --- a/src/core/manager.h +++ b/src/core/manager.h @@ -33,7 +33,6 @@ #define MANAGER_MAX_NAMES 131072 /* 128K */ typedef struct Manager Manager; -typedef struct Transaction Transaction; typedef enum WatchType WatchType; typedef struct Watch Watch; @@ -92,12 +91,6 @@ struct Watch { #include "dbus.h" #include "path-lookup.h" -struct Transaction { - /* Jobs to be added */ - Hashmap *jobs; /* Unit object => Job object list 1:1 */ - JobDependency *anchor; -}; - struct Manager { /* Note that the set of units we know of is allowed to be * inconsistent. However the subset of it that is loaded may |