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

嵌入式Linux

开发平台:

C/C++

  1. /*
  2.  * setlevel.c -- choose a console_loglevel for the kernel
  3.  *
  4.  * Tested with 1.2 on the x86
  5.  * Tested with 2.0 on the x86, Sparc and Alpha
  6.  */
  7. #include <stdio.h>
  8. #include <stdlib.h>
  9. #include <string.h>
  10. /* #include <unistd.h> */ /* conflicting on the alpha */
  11. #define __LIBRARY__ /* _syscall3 and friends are only available through this */
  12. #include <linux/unistd.h>
  13. /* define the system call, to override the lib function */
  14. _syscall3(int, syslog, int, type, char *, bufp, int, len);
  15. int main(int argc, char **argv)
  16. {
  17.     int level;
  18.     if (argc==2) level = atoi(argv[1]); /* the chosen console */
  19.     else {
  20.         fprintf(stderr, "%s: need a single argn",argv[0]); exit(1);
  21.     }
  22.     if (syslog(8,NULL,level) < 0) {  
  23.         fprintf(stderr,"%s: syslog(setlevel): %sn",
  24.                 argv[0],strerror(errno));
  25.         exit(1);
  26.     }
  27.     exit(0);
  28. }