setlevel.c

来自「linux driver 第二版 随书源码」· C语言 代码 · 共 33 行

C
33
字号
/* * setlevel.c -- choose a console_loglevel for the kernel * * Tested with 1.2 on the x86 * Tested with 2.0 on the x86, Sparc and Alpha */#include <stdio.h>#include <stdlib.h>#include <string.h>/* #include <unistd.h> */ /* conflicting on the alpha */#define __LIBRARY__ /* _syscall3 and friends are only available through this */#include <linux/unistd.h>/* define the system call, to override the lib function */_syscall3(int, syslog, int, type, char *, bufp, int, len);int main(int argc, char **argv){    int level;    if (argc==2) level = atoi(argv[1]); /* the chosen console */    else {        fprintf(stderr, "%s: need a single arg\n",argv[0]); exit(1);    }    if (syslog(8,NULL,level) < 0) {          fprintf(stderr,"%s: syslog(setlevel): %s\n",                argv[0],strerror(errno));        exit(1);    }    exit(0);}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?