setconsole.c
上传用户:wudi5211
上传日期:2010-01-21
资源大小:607k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

C/C++

  1. /*
  2.  * setconsole.c -- choose a console to receive kernel messages
  3.  */
  4. #include <stdio.h>
  5. #include <stdlib.h>
  6. #include <string.h>
  7. #include <errno.h>
  8. #include <unistd.h>
  9. #include <sys/ioctl.h>
  10. int main(int argc, char **argv)
  11. {
  12.     char bytes[2] = {11,0}; /* 11 is the TIOCLINUX cmd number */
  13.     if (argc==2) bytes[1] = atoi(argv[1]); /* the chosen console */
  14.     else {
  15.         fprintf(stderr, "%s: need a single argn",argv[0]); exit(1);
  16.     }
  17.     if (ioctl(STDIN_FILENO, TIOCLINUX, bytes)<0) {    /* use stdin */
  18.         fprintf(stderr,"%s: ioctl(stdin, TIOCLINUX): %sn",
  19.                 argv[0], strerror(errno));
  20.         exit(1);
  21.     }
  22.     exit(0);
  23. }