2000-02-08 19:58:47 +00:00
|
|
|
/* vi: set sw=4 ts=4: */
|
1999-10-25 23:32:44 +00:00
|
|
|
/*
|
|
|
|
* disalloc.c - aeb - 940501 - Disallocate virtual terminal(s)
|
|
|
|
* Renamed deallocvt.
|
|
|
|
*/
|
|
|
|
#include <stdlib.h>
|
2000-07-08 18:55:24 +00:00
|
|
|
#include <stdio.h>
|
1999-10-25 23:32:44 +00:00
|
|
|
#include <fcntl.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/ioctl.h>
|
2001-02-20 06:14:08 +00:00
|
|
|
#include "busybox.h"
|
2000-07-08 18:55:24 +00:00
|
|
|
|
|
|
|
/* From <linux/vt.h> */
|
2001-01-23 22:30:04 +00:00
|
|
|
static const int VT_DISALLOCATE = 0x5608; /* free memory associated to vt */
|
2000-07-08 18:55:24 +00:00
|
|
|
|
2000-02-08 19:58:47 +00:00
|
|
|
int deallocvt_main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
int fd, num, i;
|
1999-10-25 23:32:44 +00:00
|
|
|
|
2000-09-23 19:55:59 +00:00
|
|
|
//if ((argc > 2) || ((argv == 2) && (**(argv + 1) == '-')))
|
|
|
|
if (argc > 2)
|
2001-02-14 21:23:06 +00:00
|
|
|
show_usage();
|
1999-11-10 23:13:02 +00:00
|
|
|
|
2000-02-08 19:58:47 +00:00
|
|
|
fd = get_console_fd("/dev/console");
|
1999-10-25 23:32:44 +00:00
|
|
|
|
2000-02-08 19:58:47 +00:00
|
|
|
if (argc == 1) {
|
|
|
|
/* deallocate all unused consoles */
|
2000-12-22 01:48:07 +00:00
|
|
|
if (ioctl(fd, VT_DISALLOCATE, 0))
|
|
|
|
perror_msg_and_die("VT_DISALLOCATE");
|
2000-12-13 23:23:30 +00:00
|
|
|
} else {
|
2000-02-08 19:58:47 +00:00
|
|
|
for (i = 1; i < argc; i++) {
|
|
|
|
num = atoi(argv[i]);
|
|
|
|
if (num == 0)
|
2001-01-31 19:00:21 +00:00
|
|
|
error_msg("0: illegal VT number");
|
2000-02-08 19:58:47 +00:00
|
|
|
else if (num == 1)
|
2001-01-31 19:00:21 +00:00
|
|
|
error_msg("VT 1 cannot be deallocated");
|
2000-12-22 01:48:07 +00:00
|
|
|
else if (ioctl(fd, VT_DISALLOCATE, num))
|
|
|
|
perror_msg_and_die("VT_DISALLOCATE");
|
2000-02-08 19:58:47 +00:00
|
|
|
}
|
2000-12-13 23:23:30 +00:00
|
|
|
}
|
|
|
|
|
2000-12-01 02:55:13 +00:00
|
|
|
return EXIT_SUCCESS;
|
1999-10-25 23:32:44 +00:00
|
|
|
}
|