summaryrefslogtreecommitdiff
path: root/include/linux/vt.h
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2012-05-01 21:20:06 -0400
committerRich Felker <dalias@aerifal.cx>2012-05-01 21:20:06 -0400
commit6f0cf3061b2f68f8a43e3417cc61965ffaa2fe95 (patch)
tree1dde88b373c50d16548a93468dc3ade84e4b89f6 /include/linux/vt.h
parentd76eafcbdc099abfc1b6d09829349f01c0bfcacf (diff)
downloadmusl-6f0cf3061b2f68f8a43e3417cc61965ffaa2fe95.tar.gz
remove minimal linux kernel headers
these were at best of limited usefulness (for bootstrapping new systems, mainly) and at worst caused real kernel headers to get overwritten when upgrading libc. in case they're needed by anyone, the exact same files are now available in a new git repository: git://git.etalabs.net/mini-lkh
Diffstat (limited to 'include/linux/vt.h')
-rw-r--r--include/linux/vt.h52
1 files changed, 0 insertions, 52 deletions
diff --git a/include/linux/vt.h b/include/linux/vt.h
deleted file mode 100644
index 86262bac..00000000
--- a/include/linux/vt.h
+++ /dev/null
@@ -1,52 +0,0 @@
-#ifndef _LINUX_VT_H
-#define _LINUX_VT_H
-
-#define VT_OPENQRY 0x5600
-
-struct vt_mode {
- char mode;
- char waitv;
- short relsig;
- short acqsig;
- short frsig;
-};
-#define VT_GETMODE 0x5601
-#define VT_SETMODE 0x5602
-#define VT_AUTO 0x00
-#define VT_PROCESS 0x01
-#define VT_ACKACQ 0x02
-
-struct vt_stat {
- unsigned short v_active;
- unsigned short v_signal;
- unsigned short v_state;
-};
-#define VT_GETSTATE 0x5603
-#define VT_SENDSIG 0x5604
-
-#define VT_RELDISP 0x5605
-
-#define VT_ACTIVATE 0x5606
-#define VT_WAITACTIVE 0x5607
-#define VT_DISALLOCATE 0x5608
-
-struct vt_sizes {
- unsigned short v_rows;
- unsigned short v_cols;
- unsigned short v_scrollsize;
-};
-#define VT_RESIZE 0x5609
-
-struct vt_consize {
- unsigned short v_rows;
- unsigned short v_cols;
- unsigned short v_vlin;
- unsigned short v_clin;
- unsigned short v_vcol;
- unsigned short v_ccol;
-};
-#define VT_RESIZEX 0x560A
-#define VT_LOCKSWITCH 0x560B
-#define VT_UNLOCKSWITCH 0x560C
-
-#endif