sgicons.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:1k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * sgicons.c: Setting up and registering console I/O on the SGI.
  3.  *
  4.  * Copyright (C) 1996 David S. Miller (dm@engr.sgi.com)
  5.  * Copyright (C) 1997 Miguel de Icaza (miguel@nuclecu.unam.mx)
  6.  *
  7.  * This implements a virtual console interface.
  8.  */
  9. #include <linux/init.h>
  10. #include <linux/kernel.h>
  11. #include <linux/errno.h>
  12. #include <linux/module.h>
  13. #include <asm/uaccess.h>
  14. #include "gconsole.h"
  15. /* This is the system graphics console (the first adapter found) */
  16. struct console_ops *gconsole = 0;
  17. struct console_ops *real_gconsole = 0;
  18. void
  19. enable_gconsole (void)
  20. {
  21. if (!gconsole)
  22. gconsole = real_gconsole;
  23. }
  24. void
  25. disable_gconsole (void)
  26. {
  27. if (gconsole){
  28. real_gconsole = gconsole;
  29. gconsole = 0;
  30. }
  31. }
  32. EXPORT_SYMBOL(disable_gconsole);
  33. EXPORT_SYMBOL(enable_gconsole);
  34. void
  35. register_gconsole (struct console_ops *gc)
  36. {
  37. if (gconsole)
  38. return;
  39. gconsole = gc;
  40. }