mirror of
https://github.com/genodelabs/genode.git
synced 2025-02-23 10:40:27 +00:00
This commits hooks up a RFKILL management to the driver. The 'README' contains instructions on how to use it. Fixes #4506.
32 lines
555 B
C
32 lines
555 B
C
/**
|
|
* \brief Lx user definitions
|
|
* \author Josef Soentgen
|
|
* \date 2022-05-12
|
|
*/
|
|
|
|
/*
|
|
* Copyright (C) 2022 Genode Labs GmbH
|
|
*
|
|
* This file is distributed under the terms of the GNU General Public License
|
|
* version 2.
|
|
*/
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
struct task_struct;
|
|
|
|
extern struct task_struct *uplink_task_struct_ptr;
|
|
void uplink_init(void);
|
|
|
|
extern struct task_struct *socketcall_task_struct_ptr;
|
|
void socketcall_init(void);
|
|
|
|
extern struct task_struct *rfkill_task_struct_ptr;
|
|
void rfkill_init(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|