syscall: rename Z_SYSCALL_ to K_SYSCALL_

Rename internal API to not use z_/Z_.

Signed-off-by: Anas Nashif <anas.nashif@intel.com>
This commit is contained in:
Anas Nashif 2023-09-27 11:09:45 +00:00 committed by Carles Cufí
commit 9c4d881183
72 changed files with 369 additions and 369 deletions

View file

@ -41,9 +41,9 @@ int z_impl_validation_overhead_syscall(void)
static inline int z_vrfy_validation_overhead_syscall(void)
{
bool status_0 = Z_SYSCALL_OBJ_INIT(&test_sema, K_OBJ_SEM);
bool status_0 = K_SYSCALL_OBJ_INIT(&test_sema, K_OBJ_SEM);
bool status_1 = Z_SYSCALL_OBJ(&test_sema, K_OBJ_SEM);
bool status_1 = K_SYSCALL_OBJ(&test_sema, K_OBJ_SEM);
return status_0 || status_1;
}