summaryrefslogtreecommitdiff
path: root/src/login/logind-session-device.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/login/logind-session-device.h')
-rw-r--r--src/login/logind-session-device.h24
1 files changed, 4 insertions, 20 deletions
diff --git a/src/login/logind-session-device.h b/src/login/logind-session-device.h
index 83aef1e18..f42c0218c 100644
--- a/src/login/logind-session-device.h
+++ b/src/login/logind-session-device.h
@@ -1,23 +1,6 @@
+/* SPDX-License-Identifier: LGPL-2.1+ */
#pragma once
-/***
- This file is part of systemd.
-
- Copyright 2013 David Herrmann
-
- systemd is free software; you can redistribute it and/or modify it
- under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation; either version 2.1 of the License, or
- (at your option) any later version.
-
- systemd is distributed in the hope that it will be useful, but
- WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- Lesser General Public License for more details.
-
- You should have received a copy of the GNU Lesser General Public License
- along with systemd; If not, see <http://www.gnu.org/licenses/>.
-***/
typedef enum DeviceType DeviceType;
typedef struct SessionDevice SessionDevice;
@@ -38,8 +21,9 @@ struct SessionDevice {
dev_t dev;
char *node;
int fd;
- bool active;
- DeviceType type;
+ DeviceType type:3;
+ bool active:1;
+ bool pushed_fd:1;
LIST_FIELDS(struct SessionDevice, sd_by_device);
};