Xenomai
3.1
corectl.h
1
/*
2
* Copyright (C) 2016 Philippe Gerum <rpm@xenomai.org>.
3
*
4
* This program is free software; you can redistribute it and/or
5
* modify it under the terms of the GNU General Public License as
6
* published by the Free Software Foundation; either version 2 of the
7
* License, or (at your option) any later version.
8
*
9
* This program is distributed in the hope that it will be useful,
10
* but WITHOUT ANY WARRANTY; without even the implied warranty of
11
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12
* GNU General Public License for more details.
13
*
14
* You should have received a copy of the GNU General Public License
15
* along with this program; if not, write to the Free Software
16
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17
*/
18
#ifndef _COBALT_POSIX_CORECTL_H
19
#define _COBALT_POSIX_CORECTL_H
20
21
#include <linux/types.h>
22
#include <linux/notifier.h>
23
#include <xenomai/posix/syscall.h>
24
#include <cobalt/uapi/corectl.h>
25
26
struct
cobalt_config_vector {
27
void
__user *u_buf;
28
size_t
u_bufsz;
29
};
30
31
COBALT_SYSCALL_DECL(corectl,
32
(
int
request,
void
__user *u_buf,
size_t
u_bufsz));
33
34
void
cobalt_add_config_chain(
struct
notifier_block *nb);
35
36
void
cobalt_remove_config_chain(
struct
notifier_block *nb);
37
38
#endif
/* !_COBALT_POSIX_CORECTL_H */
kernel
cobalt
posix
corectl.h
Generated by
1.8.14