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.
|
|
|
|
*/
|
2000-09-26 03:15:58 +05:30
|
|
|
#include "busybox.h"
|
1999-10-26 05:02:44 +05:30
|
|
|
#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>
|
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[])
|
|
|
|
{
|
|
|
|
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)
|
2000-07-15 04:58:47 +05:30
|
|
|
usage(deallocvt_usage);
|
1999-11-11 04:43:02 +05:30
|
|
|
|
2000-02-09 01:28:47 +05:30
|
|
|
fd = get_console_fd("/dev/console");
|
1999-10-26 05:02:44 +05:30
|
|
|
|
2000-02-09 01:28:47 +05:30
|
|
|
if (argc == 1) {
|
|
|
|
/* deallocate all unused consoles */
|
2000-12-22 07:18:07 +05:30
|
|
|
if (ioctl(fd, VT_DISALLOCATE, 0))
|
|
|
|
perror_msg_and_die("VT_DISALLOCATE");
|
2000-12-14 04:53:30 +05:30
|
|
|
} else {
|
2000-02-09 01:28:47 +05:30
|
|
|
for (i = 1; i < argc; i++) {
|
|
|
|
num = atoi(argv[i]);
|
|
|
|
if (num == 0)
|
2001-02-01 00:30:21 +05:30
|
|
|
error_msg("0: illegal VT number");
|
2000-02-09 01:28:47 +05:30
|
|
|
else if (num == 1)
|
2001-02-01 00:30:21 +05:30
|
|
|
error_msg("VT 1 cannot be deallocated");
|
2000-12-22 07:18:07 +05:30
|
|
|
else if (ioctl(fd, VT_DISALLOCATE, num))
|
|
|
|
perror_msg_and_die("VT_DISALLOCATE");
|
2000-02-09 01:28:47 +05:30
|
|
|
}
|
2000-12-14 04:53:30 +05:30
|
|
|
}
|
|
|
|
|
2000-12-01 08:25:13 +05:30
|
|
|
return EXIT_SUCCESS;
|
1999-10-26 05:02:44 +05:30
|
|
|
}
|