busybox/console-tools/deallocvt.c

49 lines
1.1 KiB
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 "busybox.h"
1999-10-26 05:02:44 +05:30
#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>
/* From <linux/vt.h> */
#define 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)
usage(deallocvt_usage);
fd = get_console_fd("/dev/console");
1999-10-26 05:02:44 +05:30
if (argc == 1) {
2000-09-24 01:25:59 +05:30
printf("erik: A\n");
/* deallocate all unused consoles */
if (ioctl(fd, VT_DISALLOCATE, 0)) {
perror("VT_DISALLOCATE");
return EXIT_FAILURE;
}
} else
2000-09-24 01:25:59 +05:30
printf("erik: B\n");
for (i = 1; i < argc; i++) {
num = atoi(argv[i]);
if (num == 0)
error_msg("0: illegal VT number\n");
else if (num == 1)
error_msg("VT 1 cannot be deallocated\n");
else if (ioctl(fd, VT_DISALLOCATE, num)) {
perror("VT_DISALLOCATE");
error_msg_and_die("could not deallocate console %d\n", num);
}
}
2000-09-24 01:25:59 +05:30
printf("erik: C\n");
return EXIT_SUCCESS;
1999-10-26 05:02:44 +05:30
}