5dfe50c53b
Signed-off-by: Chloe M <chloe@mensia.org>
18 lines
290 B
C
18 lines
290 B
C
/*
|
|
* Copyright (c) 2026, Chloe M.
|
|
* Provided under the BSD-3 clause.
|
|
*
|
|
* Description: Thread related user-API
|
|
* Author: Chloe M.
|
|
*/
|
|
|
|
#include <ps/uapi.h>
|
|
#include <ps/thread.h>
|
|
|
|
PT_STATUS
|
|
PsSysThreadExit(SYSCALL_ARGS *Args)
|
|
{
|
|
PsExitThread(Args->Arg[0]);
|
|
UNREACHABLE();
|
|
}
|