mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-26 03:31:36 +01:00
rename kernel_module to kernel_modules, start README mass factorings
This commit is contained in:
10
packages/kernel_modules/user/sleep_forever.c
Normal file
10
packages/kernel_modules/user/sleep_forever.c
Normal file
@@ -0,0 +1,10 @@
|
||||
/* https://github.com/cirosantilli/linux-kernel-module-cheat#sleep_forever-out */
|
||||
|
||||
#include <stdio.h>
|
||||
#include <unistd.h>
|
||||
|
||||
int main(void) {
|
||||
puts(__FILE__);
|
||||
while (1)
|
||||
sleep(0xFFFFFFFF);
|
||||
}
|
||||
Reference in New Issue
Block a user