tint2/src/util/uevent.h

86 lines
1.9 KiB
C
Raw Normal View History

/**************************************************************************
*
* Linux Kernel uevent handler
*
* Copyright (C) 2015 Sebastian Reichel <sre@ring0.de>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License version 2
* or any later version as published by the Free Software Foundation.
*
* This program 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 General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
**************************************************************************/
#ifndef UEVENT_H
#define UEVENT_H
2017-08-31 16:38:31 +00:00
#include <glib.h>
enum uevent_action {
2017-04-13 12:07:23 +00:00
UEVENT_UNKNOWN = 0x01,
UEVENT_ADD = 0x02,
UEVENT_REMOVE = 0x04,
UEVENT_CHANGE = 0x08,
};
struct uevent_parameter {
2017-04-13 12:07:23 +00:00
char *key;
char *val;
};
struct uevent {
2017-04-13 12:07:23 +00:00
char *path;
enum uevent_action action;
int sequence;
char *subsystem;
GList *params;
};
struct uevent_notify {
2017-04-13 12:07:23 +00:00
int action; /* bitfield */
char *subsystem; /* NULL => any */
void *userdata;
2017-04-13 12:07:23 +00:00
void (*cb)(struct uevent *e, void *userdata);
};
2017-08-31 16:38:31 +00:00
extern int uevent_fd;
#if ENABLE_UEVENT
int uevent_init();
void uevent_cleanup();
void uevent_handler();
void uevent_register_notifier(struct uevent_notify *nb);
void uevent_unregister_notifier(struct uevent_notify *nb);
#else
2016-03-24 19:45:17 +00:00
static inline int uevent_init()
{
2017-04-13 12:07:23 +00:00
return -1;
}
2016-03-24 19:45:17 +00:00
static inline void uevent_cleanup()
{
}
static inline void uevent_handler()
{
}
2016-03-24 19:45:17 +00:00
static inline void uevent_register_notifier(struct uevent_notify *nb)
{
}
static inline void uevent_unregister_notifier(struct uevent_notify *nb)
{
}
#endif
#endif