blob: b186e043523969b016fe12508da9c25000ec0223 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _LINUX_VT_H
2#define _LINUX_VT_H
3
David Howells607ca462012-10-13 10:46:48 +01004#include <uapi/linux/vt.h>
Samuel Thibaultb293d752007-10-18 23:39:17 -07005
Bernhard Walle5d0bb2c2009-12-17 15:27:11 -08006
Amerigo Wanga376d3d2011-07-25 17:13:12 -07007/* Virtual Terminal events. */
8#define VT_ALLOCATE 0x0001 /* Console got allocated */
9#define VT_DEALLOCATE 0x0002 /* Console will be deallocated */
10#define VT_WRITE 0x0003 /* A char got output */
11#define VT_UPDATE 0x0004 /* A bigger update occurred */
12#define VT_PREWRITE 0x0005 /* A char is about to be written to the console */
13
Bernhard Walle5ada9182009-12-14 18:00:43 -080014#ifdef CONFIG_VT_CONSOLE
15
16extern int vt_kmsg_redirect(int new);
17
18#else
19
20static inline int vt_kmsg_redirect(int new)
21{
22 return 0;
23}
24
25#endif
26
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#endif /* _LINUX_VT_H */