2024-02-06 21:10:51 +08:00
|
|
|
#ifndef SYSCALL_H
|
|
|
|
#define SYSCALL_H 1
|
|
|
|
|
|
|
|
#ifdef __x86_64__
|
|
|
|
#include <kernel/arch/x86_64/syscall.h>
|
|
|
|
#endif
|
|
|
|
|
2024-02-18 03:53:54 +08:00
|
|
|
/**
|
|
|
|
* @name syscall_init
|
|
|
|
*
|
|
|
|
* ```c
|
|
|
|
* void syscall_init();
|
|
|
|
* ```
|
|
|
|
*
|
|
|
|
* 初始化系统调用。
|
|
|
|
*/
|
2024-02-06 21:10:51 +08:00
|
|
|
void syscall_init();
|
|
|
|
|
|
|
|
#endif
|