busybox/console-tools/deallocvt.c

44 lines
982 B
C
Raw Normal View History

/* vi: set sw=4 ts=4: */
1999-10-26 05:02:44 +05:30
/*
* disalloc.c - aeb - 940501 - Disallocate virtual terminal(s)
* Renamed deallocvt.
*/
#include <stdlib.h>
#include <stdio.h>
1999-10-26 05:02:44 +05:30
#include <fcntl.h>
#include <sys/types.h>
#include <sys/ioctl.h>
#include "busybox.h"
/* From <linux/vt.h> */
static const int VT_DISALLOCATE = 0x5608; /* free memory associated to vt */
int deallocvt_main(int argc, char *argv[])
{
int fd, num, i;
1999-10-26 05:02:44 +05:30
2000-09-24 01:25:59 +05:30
//if ((argc > 2) || ((argv == 2) && (**(argv + 1) == '-')))
if (argc > 2)
2003-03-19 14:43:01 +05:30
bb_show_usage();
2002-09-16 11:52:25 +05:30
fd = get_console_fd();
1999-10-26 05:02:44 +05:30
if (argc == 1) {
/* deallocate all unused consoles */
if (ioctl(fd, VT_DISALLOCATE, 0))
2003-03-19 14:43:01 +05:30
bb_perror_msg_and_die("VT_DISALLOCATE");
} else {
for (i = 1; i < argc; i++) {
num = atoi(argv[i]);
if (num == 0)
2003-03-19 14:43:01 +05:30
bb_error_msg("0: illegal VT number");
else if (num == 1)
2003-03-19 14:43:01 +05:30
bb_error_msg("VT 1 cannot be deallocated");
else if (ioctl(fd, VT_DISALLOCATE, num))
2003-03-19 14:43:01 +05:30
bb_perror_msg_and_die("VT_DISALLOCATE");
}
}
return EXIT_SUCCESS;
1999-10-26 05:02:44 +05:30
}