diff options
author | Cédric VINCENT <cedric.vincent@st.com> | 2011-06-29 15:09:10 +0200 |
---|---|---|
committer | Riku Voipio <riku.voipio@linaro.org> | 2011-07-11 16:10:49 +0300 |
commit | 774750c088192112df1623610dc35d9e03983d49 (patch) | |
tree | 48ccbd3f7fd67eb2d0e408a4b522e2a3b9d7ddd9 /linux-user/syscall_defs.h | |
parent | e6fe18fb318cb399623246e2561581442ffc0372 (diff) |
linux-user: Add support for more VT ioctls
DirectFB-1.0 uses at least two of the four added ioctls, and the two
others were added for completeness. This patch was validated with the
program "vlock -all/-new".
Signed-off-by: Cédric VINCENT <cedric.vincent@st.com>
Cc: Riku Voipio <riku.voipio@iki.fi>
Signed-off-by: Riku Voipio <riku.voipio@linaro.org>
Diffstat (limited to 'linux-user/syscall_defs.h')
-rw-r--r-- | linux-user/syscall_defs.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/linux-user/syscall_defs.h b/linux-user/syscall_defs.h index 2b74547885..4a59b36d68 100644 --- a/linux-user/syscall_defs.h +++ b/linux-user/syscall_defs.h @@ -940,6 +940,10 @@ struct target_pollfd { #define TARGET_VT_WAITACTIVE 0x5607 #define TARGET_VT_LOCKSWITCH 0x560b #define TARGET_VT_UNLOCKSWITCH 0x560c +#define TARGET_VT_GETMODE 0x5601 +#define TARGET_VT_SETMODE 0x5602 +#define TARGET_VT_RELDISP 0x5605 +#define TARGET_VT_DISALLOCATE 0x5608 /* from asm/termbits.h */ |