]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/core/transaction.h
remove unused variables
[thirdparty/systemd.git] / src / core / transaction.h
CommitLineData
7c0436b9
LP
1/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2
75778e21
MS
3#ifndef footransactionhfoo
4#define footransactionhfoo
5
7c0436b9
LP
6/***
7 This file is part of systemd.
8
9 Copyright 2010 Lennart Poettering
10
11 systemd is free software; you can redistribute it and/or modify it
12 under the terms of the GNU Lesser General Public License as published by
13 the Free Software Foundation; either version 2.1 of the License, or
14 (at your option) any later version.
15
16 systemd is distributed in the hope that it will be useful, but
17 WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 Lesser General Public License for more details.
20
21 You should have received a copy of the GNU Lesser General Public License
22 along with systemd; If not, see <http://www.gnu.org/licenses/>.
23***/
24
75778e21
MS
25typedef struct Transaction Transaction;
26
27#include "unit.h"
28#include "manager.h"
29#include "job.h"
30#include "hashmap.h"
31
32struct Transaction {
33 /* Jobs to be added */
34 Hashmap *jobs; /* Unit object => Job object list 1:1 */
b94fbd30 35 Job *anchor_job; /* the job the user asked for */
23ade460 36 bool irreversible;
75778e21
MS
37};
38
23ade460 39Transaction *transaction_new(bool irreversible);
75778e21
MS
40void transaction_free(Transaction *tr);
41
42int transaction_add_job_and_dependencies(
43 Transaction *tr,
44 JobType type,
45 Unit *unit,
46 Job *by,
47 bool matters,
48 bool override,
49 bool conflicts,
50 bool ignore_requirements,
51 bool ignore_order,
b94fbd30 52 DBusError *e);
75778e21
MS
53int transaction_activate(Transaction *tr, Manager *m, JobMode mode, DBusError *e);
54int transaction_add_isolate_jobs(Transaction *tr, Manager *m);
55void transaction_abort(Transaction *tr);
56
57#endif