Gitiles
Code Review
Sign In
LeafOS
/
LeafOS-Devices
/
android_kernel_realme_mt6785
/
e138a5d2356729b8752e88520cc1525fae9794ac
/
.
/
Documentation
/
watchdog
/
src
/
watchdog-simple.c
blob: 85cf17c48669d73111ff14ae8490417425da7030 [
file
] [
log
] [
blame
]
#include
<stdlib.h>
#include
<fcntl.h>
int
main
(
int
argc
,
const
char
*
argv
[])
{
int
fd
=
open
(
"/dev/watchdog"
,
O_WRONLY
);
if
(
fd
==
-
1
)
{
perror
(
"watchdog"
);
exit
(
1
);
}
while
(
1
)
{
write
(
fd
,
"\0"
,
1
);
fsync
(
fd
);
sleep
(
10
);
}
}