xref: /f-stack/freebsd/sys/devctl.h (revision 22ce4aff)
1*22ce4affSfengbojiang /*-
2*22ce4affSfengbojiang  * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
3*22ce4affSfengbojiang  *
4*22ce4affSfengbojiang  * Copyright 2020 M. Warner Losh.
5*22ce4affSfengbojiang  *
6*22ce4affSfengbojiang  * Redistribution and use in source and binary forms, with or without
7*22ce4affSfengbojiang  * modification, are permitted provided that the following conditions
8*22ce4affSfengbojiang  * are met:
9*22ce4affSfengbojiang  * 1. Redistributions of source code must retain the above copyright
10*22ce4affSfengbojiang  *    notice, this list of conditions and the following disclaimer.
11*22ce4affSfengbojiang  * 2. Redistributions in binary form must reproduce the above copyright
12*22ce4affSfengbojiang  *    notice, this list of conditions and the following disclaimer in the
13*22ce4affSfengbojiang  *    documentation and/or other materials provided with the distribution.
14*22ce4affSfengbojiang  *
15*22ce4affSfengbojiang  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16*22ce4affSfengbojiang  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17*22ce4affSfengbojiang  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18*22ce4affSfengbojiang  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
19*22ce4affSfengbojiang  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20*22ce4affSfengbojiang  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21*22ce4affSfengbojiang  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22*22ce4affSfengbojiang  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23*22ce4affSfengbojiang  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24*22ce4affSfengbojiang  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25*22ce4affSfengbojiang  * SUCH DAMAGE.
26*22ce4affSfengbojiang  *
27*22ce4affSfengbojiang  * $FreeBSD$
28*22ce4affSfengbojiang  *
29*22ce4affSfengbojiang  */
30*22ce4affSfengbojiang 
31*22ce4affSfengbojiang #ifndef _SYS_DEVCTL_H_
32*22ce4affSfengbojiang #define _SYS_DEVCTL_H_
33*22ce4affSfengbojiang 
34*22ce4affSfengbojiang /**
35*22ce4affSfengbojiang  * devctl hooks.  Typically one should use the devctl_notify
36*22ce4affSfengbojiang  * hook to send the message.
37*22ce4affSfengbojiang  */
38*22ce4affSfengbojiang bool devctl_process_running(void);
39*22ce4affSfengbojiang void devctl_notify(const char *__system, const char *__subsystem,
40*22ce4affSfengbojiang     const char *__type, const char *__data);
41*22ce4affSfengbojiang struct sbuf;
42*22ce4affSfengbojiang void devctl_safe_quote_sb(struct sbuf *__sb, const char *__src);
43*22ce4affSfengbojiang 
44*22ce4affSfengbojiang #endif /* _SYS_DEVCTL_H_ */
45