2000-02-09 01:28:47 +05:30
|
|
|
/* 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>
|
2000-07-09 00:25:24 +05:30
|
|
|
#include <stdio.h>
|
1999-10-26 05:02:44 +05:30
|
|
|
#include <fcntl.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/ioctl.h>
|
2001-02-20 11:44:08 +05:30
|
|
|
#include "busybox.h"
|
2000-07-09 00:25:24 +05:30
|
|
|
|
|
|
|
/* From <linux/vt.h> */
|
2001-01-24 04:00:04 +05:30
|
|
|
static const int VT_DISALLOCATE = 0x5608; /* free memory associated to vt */
|
2000-07-09 00:25:24 +05:30
|
|
|
|
2000-02-09 01:28:47 +05:30
|
|
|
int deallocvt_main(int argc, char *argv[])
|
|
|
|
{
|
2003-04-27 16:12:31 +05:30
|
|
|
int fd, num=0;
|
1999-10-26 05:02:44 +05:30
|
|
|
|
2000-09-24 01:25:59 +05:30
|
|
|
if (argc > 2)
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_show_usage();
|
1999-11-11 04:43:02 +05:30
|
|
|
|
2002-09-16 11:52:25 +05:30
|
|
|
fd = get_console_fd();
|
2003-04-27 16:12:31 +05:30
|
|
|
|
|
|
|
/* num=0 deallocate all unused consoles */
|
|
|
|
if (argc == 1)
|
|
|
|
goto disallocate_all;
|
1999-10-26 05:02:44 +05:30
|
|
|
|
2003-04-27 16:12:31 +05:30
|
|
|
num=bb_xgetlarg(argv[1], 10, 0, INT_MAX);
|
|
|
|
|
|
|
|
switch(num)
|
|
|
|
{
|
|
|
|
case 0:
|
|
|
|
bb_error_msg("0: illegal VT number");
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
bb_error_msg("VT 1 cannot be deallocated");
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
disallocate_all:
|
|
|
|
if (ioctl(fd, VT_DISALLOCATE, num))
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_perror_msg_and_die("VT_DISALLOCATE");
|
2003-04-27 16:12:31 +05:30
|
|
|
return EXIT_SUCCESS;
|
2000-12-14 04:53:30 +05:30
|
|
|
}
|
2003-04-27 16:12:31 +05:30
|
|
|
return EXIT_FAILURE;
|
1999-10-26 05:02:44 +05:30
|
|
|
}
|