deallocvt.c 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. /* vi: set sw=4 ts=4: */
  2. /*
  3. * Disallocate virtual terminal(s)
  4. *
  5. * Copyright (C) 2003 by Tito Ragusa <farmatito@tiscali.it>
  6. * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
  7. *
  8. * Licensed under GPLv2 or later, see file LICENSE in this source tree.
  9. */
  10. //config:config DEALLOCVT
  11. //config: bool "deallocvt (2.2 kb)"
  12. //config: default y
  13. //config: help
  14. //config: This program deallocates unused virtual consoles.
  15. //applet:IF_DEALLOCVT(APPLET_NOEXEC(deallocvt, deallocvt, BB_DIR_USR_BIN, BB_SUID_DROP, deallocvt))
  16. //kbuild:lib-$(CONFIG_DEALLOCVT) += deallocvt.o
  17. //usage:#define deallocvt_trivial_usage
  18. //usage: "[N]"
  19. //usage:#define deallocvt_full_usage "\n\n"
  20. //usage: "Deallocate unused virtual terminal /dev/ttyN"
  21. #include "libbb.h"
  22. /* From <linux/vt.h> */
  23. enum { VT_DISALLOCATE = 0x5608 }; /* free memory associated to vt */
  24. int deallocvt_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
  25. int deallocvt_main(int argc UNUSED_PARAM, char **argv)
  26. {
  27. /* num = 0 deallocate all unused consoles */
  28. int num = 0;
  29. if (argv[1]) {
  30. if (argv[2])
  31. bb_show_usage();
  32. num = xatou_range(argv[1], 1, 63);
  33. }
  34. /* double cast suppresses "cast to ptr from int of different size" */
  35. xioctl(get_console_fd_or_die(), VT_DISALLOCATE, (void *)(ptrdiff_t)num);
  36. return EXIT_SUCCESS;
  37. }