deallocvt.c 863 B

123456789101112131415161718192021222324252627282930313233
  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. /* no options, no getopt */
  11. #include "libbb.h"
  12. /* From <linux/vt.h> */
  13. enum { VT_DISALLOCATE = 0x5608 }; /* free memory associated to vt */
  14. int deallocvt_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
  15. int deallocvt_main(int argc UNUSED_PARAM, char **argv)
  16. {
  17. /* num = 0 deallocate all unused consoles */
  18. int num = 0;
  19. if (argv[1]) {
  20. if (argv[2])
  21. bb_show_usage();
  22. num = xatou_range(argv[1], 1, 63);
  23. }
  24. /* double cast suppresses "cast to ptr from int of different size" */
  25. xioctl(get_console_fd_or_die(), VT_DISALLOCATE, (void *)(ptrdiff_t)num);
  26. return EXIT_SUCCESS;
  27. }