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

嵌入式Linux

开发平台:

C/C++

  1. /*
  2.  * setlevel.c -- choose a console_loglevel for the kernel
  3.  *
  4.  * Copyright (C) 1998,2000,2001 Alessandro Rubini
  5.  * 
  6.  *   This program is free software; you can redistribute it and/or modify
  7.  *   it under the terms of the GNU General Public License as published by
  8.  *   the Free Software Foundation; either version 2 of the License, or
  9.  *   (at your option) any later version.
  10.  *
  11.  *   This program is distributed in the hope that it will be useful,
  12.  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.  *   GNU General Public License for more details.
  15.  *
  16.  *   You should have received a copy of the GNU General Public License
  17.  *   along with this program; if not, write to the Free Software
  18.  *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
  19.  */
  20. #include <stdio.h>
  21. #include <stdlib.h>
  22. #include <string.h>
  23. /* #include <unistd.h> */ /* conflicting on the alpha */
  24. #define __LIBRARY__ /* _syscall3 and friends are only available through this */
  25. #include <linux/unistd.h>
  26. /* define the system call, to override the library function */
  27. _syscall3(int, syslog, int, type, char *, bufp, int, len);
  28. int main(int argc, char **argv)
  29. {
  30.     int level;
  31.     if (argc==2) {
  32. level = atoi(argv[1]); /* the chosen console */
  33.     } else {
  34.         fprintf(stderr, "%s: need a single argn",argv[0]); exit(1);
  35.     }
  36.     if (syslog(8,NULL,level) < 0) {  
  37.         fprintf(stderr,"%s: syslog(setlevel): %sn",
  38.                 argv[0],strerror(errno));
  39.         exit(1);
  40.     }
  41.     exit(0);
  42. }