]>
git.proxmox.com Git - systemd.git/blob - src/core/transaction.h
4 This file is part of systemd.
6 Copyright 2010 Lennart Poettering
8 systemd is free software; you can redistribute it and/or modify it
9 under the terms of the GNU Lesser General Public License as published by
10 the Free Software Foundation; either version 2.1 of the License, or
11 (at your option) any later version.
13 systemd is distributed in the hope that it will be useful, but
14 WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 Lesser General Public License for more details.
18 You should have received a copy of the GNU Lesser General Public License
19 along with systemd; If not, see <http://www.gnu.org/licenses/>.
22 typedef struct Transaction Transaction
;
30 /* Jobs to be added */
31 Hashmap
*jobs
; /* Unit object => Job object list 1:1 */
32 Job
*anchor_job
; /* the job the user asked for */
36 Transaction
*transaction_new(bool irreversible
);
37 void transaction_free(Transaction
*tr
);
39 int transaction_add_job_and_dependencies(
46 bool ignore_requirements
,
49 int transaction_activate(Transaction
*tr
, Manager
*m
, JobMode mode
, sd_bus_error
*e
);
50 int transaction_add_isolate_jobs(Transaction
*tr
, Manager
*m
);
51 void transaction_abort(Transaction
*tr
);