OXIESEC PANEL
- Current Dir:
/
/
usr
/
src
/
linux-headers-4.15.0-197
/
include
/
xen
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
11/17/2022 06:42:18 AM
rwxr-xr-x
📄
acpi.h
3.41 KB
01/28/2018 09:20:33 PM
rw-r--r--
📁
arm
-
11/17/2022 06:42:23 AM
rwxr-xr-x
📄
balloon.h
1.15 KB
11/01/2022 04:52:05 PM
rw-r--r--
📄
events.h
5.14 KB
11/01/2022 04:52:05 PM
rw-r--r--
📄
features.h
502 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
grant_table.h
9.99 KB
11/01/2022 04:52:05 PM
rw-r--r--
📄
hvc-console.h
518 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
hvm.h
1.29 KB
01/28/2018 09:20:33 PM
rw-r--r--
📁
interface
-
11/17/2022 06:42:23 AM
rwxr-xr-x
📄
page.h
1.34 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
platform_pci.h
2.04 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
swiotlb-xen.h
271 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
tmem.h
349 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
xen-ops.h
5.96 KB
11/01/2022 04:52:05 PM
rw-r--r--
📄
xen.h
972 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
xenbus.h
8.54 KB
11/01/2022 04:52:05 PM
rw-r--r--
📄
xenbus_dev.h
1.8 KB
01/28/2018 09:20:33 PM
rw-r--r--
Editing: hvc-console.h
Close
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef XEN_HVC_CONSOLE_H #define XEN_HVC_CONSOLE_H extern struct console xenboot_console; #ifdef CONFIG_HVC_XEN void xen_console_resume(void); void xen_raw_console_write(const char *str); __printf(1, 2) void xen_raw_printk(const char *fmt, ...); #else static inline void xen_console_resume(void) { } static inline void xen_raw_console_write(const char *str) { } static inline __printf(1, 2) void xen_raw_printk(const char *fmt, ...) { } #endif #endif /* XEN_HVC_CONSOLE_H */