From 8c5ab9e435c13c2d30c134efe5c08520b4272f92 Mon Sep 17 00:00:00 2001 From: Jim Huang Date: Fri, 22 Dec 2023 20:37:37 +0800 Subject: [PATCH] Enforce consistent name scheme --- examples/{syscall_steal.c => syscall-steal.c} | 0 lkmpg.tex | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename examples/{syscall_steal.c => syscall-steal.c} (100%) diff --git a/examples/syscall_steal.c b/examples/syscall-steal.c similarity index 100% rename from examples/syscall_steal.c rename to examples/syscall-steal.c diff --git a/lkmpg.tex b/lkmpg.tex index f16470c0..edeb0656 100644 --- a/lkmpg.tex +++ b/lkmpg.tex @@ -1562,7 +1562,7 @@ \section{System Calls} In order to keep people from doing potential harmful things \cpp|sys_call_table| is no longer exported. This means, if you want to do something more than a mere dry run of this example, you will have to patch your current kernel in order to have \cpp|sys_call_table| exported. -\samplec{examples/syscall.c} +\samplec{examples/syscall-steal.c} \section{Blocking Processes and threads} \label{sec:blocking_process_thread}