]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/core/device.h
core: there's no point to complain so loudly about non-isolatable boot targets
[thirdparty/systemd.git] / src / core / device.h
CommitLineData
03467c88 1/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
5cb5a6ff 2
c2f1db8f 3#pragma once
5cb5a6ff 4
a7334b09
LP
5/***
6 This file is part of systemd.
7
8 Copyright 2010 Lennart Poettering
9
10 systemd is free software; you can redistribute it and/or modify it
5430f7f2
LP
11 under the terms of the GNU Lesser General Public License as published by
12 the Free Software Foundation; either version 2.1 of the License, or
a7334b09
LP
13 (at your option) any later version.
14
15 systemd is distributed in the hope that it will be useful, but
16 WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
5430f7f2 18 Lesser General Public License for more details.
a7334b09 19
5430f7f2 20 You should have received a copy of the GNU Lesser General Public License
a7334b09
LP
21 along with systemd; If not, see <http://www.gnu.org/licenses/>.
22***/
23
5cb5a6ff
LP
24typedef struct Device Device;
25
87f0e418 26#include "unit.h"
5cb5a6ff
LP
27
28/* We simply watch devices, we cannot plug/unplug them. That
29 * simplifies the state engine greatly */
30typedef enum DeviceState {
31 DEVICE_DEAD,
73608ed9 32 DEVICE_PLUGGED,
6326a423
LP
33 _DEVICE_STATE_MAX,
34 _DEVICE_STATE_INVALID = -1
5cb5a6ff
LP
35} DeviceState;
36
37struct Device {
ac155bb8 38 Unit meta;
5cb5a6ff 39
25ac040b 40 char *sysfs;
8fe914ec 41
35b8ca3a 42 /* In order to be able to distinguish dependencies on
8fe914ec
LP
43 different device nodes we might end up creating multiple
44 devices for the same sysfs path. We chain them up here. */
45
46 LIST_FIELDS(struct Device, same_sysfs);
7fab9d01
LP
47
48 DeviceState state;
5cb5a6ff
LP
49};
50
87f0e418 51extern const UnitVTable device_vtable;
5cb5a6ff 52
f94ea366
LP
53void device_fd_event(Manager *m, int events);
54
a16e1123
LP
55const char* device_state_to_string(DeviceState i);
56DeviceState device_state_from_string(const char *s);