oops_test.c

来自「linux下记录系统日志代码以及记录内核日志代码」· C语言 代码 · 共 53 行

C
53
字号
/* * This is a small test program for generating a kernel protection fault * using the oops loadable module. * * Fri Apr 26 12:52:43 CDT 1996:  Dr. Wettstein *	Initial version. *//* Includes. */#include <stdio.h>#include <unistd.h>#include <fcntl.h>#include <sys/ioctl.h>/* Function prototypes. */extern int main(int, char **);extern int main(argc, argv)     int argc;     char *argv[];{	auto int fd;	if ( argc != 2 )	{		fprintf(stderr, "No oops device specified.\n");		return(1);	}	if ( (fd = open(argv[1], O_RDONLY)) < 0 )	{		fprintf(stderr, "Cannot open device: %s.\n", argv[1]);		return(1);	}	if ( ioctl(fd, 1, 0) < 0 )	{		fprintf(stderr, "Failed on oops.\n");		return(1);	}	printf("OOoops\n");	close(fd);	return(0);}

⌨️ 快捷键说明

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