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

嵌入式Linux

开发平台:

C/C++

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