blob: 6ffb1471e68d28cf59ef5f68221dde24d99a4f82 [file] [log] [blame]
Erik Andersene49d5ec2000-02-08 19:58:47 +00001/* vi: set sw=4 ts=4: */
Eric Andersen0460ff21999-10-25 23:32:44 +00002/*
Eric Andersen7f6295f2003-10-22 10:34:15 +00003 * Disallocate virtual terminal(s)
4 *
5 * Copyright (C) 2003 by Tito Ragusa <farmatito@tiscali.it>
Eric Andersenc7bda1c2004-03-15 08:29:22 +00006 * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
Eric Andersen7f6295f2003-10-22 10:34:15 +00007 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +02008 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
Eric Andersen0460ff21999-10-25 23:32:44 +00009 */
Denys Vlasenko6d932992016-11-23 10:39:27 +010010//config:config DEALLOCVT
Denys Vlasenko4eed2c62017-07-18 22:01:24 +020011//config: bool "deallocvt (1.9 kb)"
Denys Vlasenko6d932992016-11-23 10:39:27 +010012//config: default y
13//config: select PLATFORM_LINUX
14//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020015//config: This program deallocates unused virtual consoles.
Eric Andersen7f6295f2003-10-22 10:34:15 +000016
Denys Vlasenko6d932992016-11-23 10:39:27 +010017//applet:IF_DEALLOCVT(APPLET(deallocvt, BB_DIR_USR_BIN, BB_SUID_DROP))
18
19//kbuild:lib-$(CONFIG_DEALLOCVT) += deallocvt.o
Eric Andersen7f6295f2003-10-22 10:34:15 +000020
Pere Orga55068c42011-03-27 23:42:28 +020021//usage:#define deallocvt_trivial_usage
22//usage: "[N]"
23//usage:#define deallocvt_full_usage "\n\n"
24//usage: "Deallocate unused virtual terminal /dev/ttyN"
25
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000026#include "libbb.h"
Eric Andersenbd22ed82000-07-08 18:55:24 +000027
28/* From <linux/vt.h> */
Rob Landleybc68cd12006-03-10 19:22:06 +000029enum { VT_DISALLOCATE = 0x5608 }; /* free memory associated to vt */
Eric Andersenbd22ed82000-07-08 18:55:24 +000030
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +000031int deallocvt_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +000032int deallocvt_main(int argc UNUSED_PARAM, char **argv)
Erik Andersene49d5ec2000-02-08 19:58:47 +000033{
Glenn L McGrath17b4a202004-01-15 11:50:19 +000034 /* num = 0 deallocate all unused consoles */
35 int num = 0;
Eric Andersen0460ff21999-10-25 23:32:44 +000036
Denis Vlasenko1d426652008-03-17 09:09:09 +000037 if (argv[1]) {
38 if (argv[2])
39 bb_show_usage();
Denis Vlasenko6ee023c2007-08-23 10:52:52 +000040 num = xatou_range(argv[1], 1, 63);
Mark Whitley6f6aa9b2000-12-13 23:23:30 +000041 }
Glenn L McGrath17b4a202004-01-15 11:50:19 +000042
Denis Vlasenko968dbf92007-10-29 19:52:21 +000043 /* double cast suppresses "cast to ptr from int of different size" */
Denis Vlasenko2afd5ab2008-08-05 23:32:27 +000044 xioctl(get_console_fd_or_die(), VT_DISALLOCATE, (void *)(ptrdiff_t)num);
Glenn L McGrath17b4a202004-01-15 11:50:19 +000045 return EXIT_SUCCESS;
Eric Andersen0460ff21999-10-25 23:32:44 +000046}