d4390c6a1b
Signed-off-by: Chloe M. <chloe@mensia.org>
23 lines
379 B
C
23 lines
379 B
C
/*
|
|
* Copyright (c) 2026, Chloe M.
|
|
* Provided under the BSD-3 clause.
|
|
*
|
|
* Description: Process related user-API
|
|
* Author: Chloe M.
|
|
*/
|
|
|
|
#ifndef _PS_UAPI_H_
|
|
#define _PS_UAPI_H_ 1
|
|
|
|
#include <ps/thread.h>
|
|
#include <ke/syscall.h>
|
|
|
|
/*
|
|
* Exit the current thread:
|
|
*
|
|
* @ARG[0]: Exit status code
|
|
*/
|
|
PT_STATUS PsSysThreadExit(SYSCALL_ARGS *Args);
|
|
|
|
#endif /* !_PS_UAPI_H_ */
|