mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-24 02:12:09 -05:00
1682f0b760
SPDX License Identifiers are a more compact / standardized way of representing file license information. See: https://spdx.dev/resources/use/#identifiers This was done with the `ambr` search and replace tool. ambr --no-parent-ignore --key-from-file --rep-from-file key.txt rep.txt *
42 lines
987 B
C
42 lines
987 B
C
/*
|
|
* Copyright (c) 2021, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <Kernel/API/Syscall.h>
|
|
#include <sys/types.h>
|
|
|
|
extern "C" {
|
|
|
|
uintptr_t syscall0(uintptr_t function);
|
|
uintptr_t syscall1(uintptr_t function, uintptr_t arg0);
|
|
uintptr_t syscall2(uintptr_t function, uintptr_t arg0, uintptr_t arg1);
|
|
uintptr_t syscall3(uintptr_t function, uintptr_t arg0, uintptr_t arg1, uintptr_t arg2);
|
|
}
|
|
|
|
#ifdef __cplusplus
|
|
|
|
inline uintptr_t syscall(auto function)
|
|
{
|
|
return syscall0(function);
|
|
}
|
|
|
|
inline uintptr_t syscall(auto function, auto arg0)
|
|
{
|
|
return syscall1((uintptr_t)function, (uintptr_t)arg0);
|
|
}
|
|
|
|
inline uintptr_t syscall(auto function, auto arg0, auto arg1)
|
|
{
|
|
return syscall2((uintptr_t)function, (uintptr_t)arg0, (uintptr_t)arg1);
|
|
}
|
|
|
|
inline uintptr_t syscall(auto function, auto arg0, auto arg1, auto arg2)
|
|
{
|
|
return syscall3((uintptr_t)function, (uintptr_t)arg0, (uintptr_t)arg1, (uintptr_t)arg2);
|
|
}
|
|
|
|
#endif
|