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.
|
|
|
|
*/
|
1999-10-28 21:36:25 +05:30
|
|
|
#include "internal.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> */
|
|
|
|
#define VT_DISALLOCATE 0x5608 /* free memory associated to vt */
|
|
|
|
|
1999-10-26 05:02:44 +05:30
|
|
|
|
|
|
|
char *progname;
|
|
|
|
|
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-02-09 01:28:47 +05:30
|
|
|
if ((argc != 2) || (**(argv + 1) == '-')) {
|
|
|
|
usage
|
2000-05-10 10:35:45 +05:30
|
|
|
("deallocvt N\n"
|
|
|
|
#ifndef BB_FEATURE_TRIVIAL_HELP
|
|
|
|
"\nDeallocate unused virtual terminal /dev/ttyN\n"
|
|
|
|
#endif
|
|
|
|
);
|
2000-02-09 01:28:47 +05:30
|
|
|
}
|
1999-11-11 04:43:02 +05:30
|
|
|
|
2000-02-09 01:28:47 +05:30
|
|
|
progname = argv[0];
|
1999-10-26 05:02:44 +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 */
|
|
|
|
if (ioctl(fd, VT_DISALLOCATE, 0)) {
|
|
|
|
perror("VT_DISALLOCATE");
|
2000-06-19 22:55:40 +05:30
|
|
|
exit( FALSE);
|
2000-02-09 01:28:47 +05:30
|
|
|
}
|
|
|
|
} else
|
|
|
|
for (i = 1; i < argc; i++) {
|
|
|
|
num = atoi(argv[i]);
|
|
|
|
if (num == 0)
|
|
|
|
fprintf(stderr, "%s: 0: illegal VT number\n", progname);
|
|
|
|
else if (num == 1)
|
|
|
|
fprintf(stderr, "%s: VT 1 cannot be deallocated\n",
|
|
|
|
progname);
|
|
|
|
else if (ioctl(fd, VT_DISALLOCATE, num)) {
|
|
|
|
perror("VT_DISALLOCATE");
|
|
|
|
fprintf(stderr, "%s: could not deallocate console %d\n",
|
|
|
|
progname, num);
|
2000-06-19 22:55:40 +05:30
|
|
|
exit( FALSE);
|
2000-02-09 01:28:47 +05:30
|
|
|
}
|
|
|
|
}
|
2000-06-19 22:55:40 +05:30
|
|
|
return( TRUE);
|
1999-10-26 05:02:44 +05:30
|
|
|
}
|