From 54472ea05433849d77b6ff8187e37e97e11f6f92 Mon Sep 17 00:00:00 2001 From: Bradley Bolen Date: Fri, 12 Apr 2019 11:10:58 -0400 Subject: [PATCH] syscall: Fix comment The macros that generate the handler and implementation functions changed the generated names. Fix the comments to match. Signed-off-by: Bradley Bolen --- include/syscall.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/syscall.h b/include/syscall.h index 7a5ac90e314..724b18e066d 100644 --- a/include/syscall.h +++ b/include/syscall.h @@ -37,11 +37,11 @@ extern "C" { * All system calls require a handler function and an implementation function. * These must follow a naming convention. For a system call named k_foo(): * - * - The handler function will be named _handler_k_foo(). Handler functions + * - The handler function will be named z_hdlr_k_foo(). Handler functions * are always of type _k_syscall_handler_t, verify arguments passed up * from userspace, and call the implementation function. See * documentation for that typedef for more information. - * - The implementation function will be named _impl_k_foo(). This is the + * - The implementation function will be named z_impl_k_foo(). This is the * actual implementation of the system call. * * The basic declartion macros are as follows. System calls with 0 to 10