博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
linux watchdog demo hacking
阅读量:6813 次
发布时间:2019-06-26

本文共 1755 字,大约阅读时间需要 5 分钟。

/********************************************************************** *                    linux watchdog demo hacking * 说明: *     本文主要解析linux watchdog大概应该如何操作。 * *                                    2016-3-28 深圳 南山平山村 曾剑锋 *********************************************************************/#include 
#include
#include
#include
#include
#include
#include
#include
int fd;/* * This function simply sends an IOCTL to the driver, which in turn ticks * the PC Watchdog card to reset its internal timer so it doesn't trigger * a computer reset. * 这个函数仅仅是发送一个IOCTL命令给驱动,重新启动Watchdog的内部时钟计数器, * 这样就不会导致系统重启。 */static void keep_alive(void){ int dummy; ioctl(fd, WDIOC_KEEPALIVE, &dummy);}/* * The main program. Run the program with "-d" to disable the card, * or "-e" to enable the card. * 主程序,通过传递参数-d来关闭watchdog,-e来打开watchdog。 */int main(int argc, char *argv[]){ int flags; // 打开设备节点 fd = open("/dev/watchdog", O_WRONLY); if (fd == -1) { fprintf(stderr, "Watchdog device not enabled.\n"); fflush(stderr); exit(-1); } if (argc > 1) { // 关闭watchdog if (!strncasecmp(argv[1], "-d", 2)) { flags = WDIOS_DISABLECARD; ioctl(fd, WDIOC_SETOPTIONS, &flags); fprintf(stderr, "Watchdog card disabled.\n"); fflush(stderr); exit(0); // 使能watchdog } else if (!strncasecmp(argv[1], "-e", 2)) { flags = WDIOS_ENABLECARD; ioctl(fd, WDIOC_SETOPTIONS, &flags); fprintf(stderr, "Watchdog card enabled.\n"); fflush(stderr); exit(0); } else { fprintf(stderr, "-d to disable, -e to enable.\n"); fprintf(stderr, "run by itself to tick the card.\n"); fflush(stderr); exit(0); } } else { fprintf(stderr, "Watchdog Ticking Away!\n"); fflush(stderr); } while(1) { // 每一秒喂狗一次 keep_alive(); sleep(1); }}

 

转载地址:http://lkczl.baihongyu.com/

你可能感兴趣的文章
C++ 生成随机数
查看>>
poj1014
查看>>
poj3087
查看>>
mybatis generator
查看>>
[Selenium] close alert window
查看>>
远程调用appium server
查看>>
The-ith-Element
查看>>
找规律 Codeforces Round #290 (Div. 2) A. Fox And Snake
查看>>
枚举 POJ 1753 Flip Game
查看>>
洛谷3396:哈希冲突——题解
查看>>
Mysql之数据库设计
查看>>
Java Enum
查看>>
method="post" 用户名和密码不显示在网址里
查看>>
LeetCode----8. String to Integer (atoi)(Java)
查看>>
JSP标签
查看>>
Python--day65--母版和继承的基本使用
查看>>
在python 3.6的eclipse中,导入from lxml import etree老是提示,Unresolved import:etree的错误...
查看>>
经纬度计算距离
查看>>
Linux 在添加一个新账号后却没有权限怎么办
查看>>
React 源码剖析系列 - 不可思议的 react diff
查看>>