-
-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
coreinit: Add OSSwitchFiber{Ex} functions.
- Loading branch information
Showing
3 changed files
with
37 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
#pragma once | ||
#include <wut.h> | ||
|
||
/** | ||
* \defgroup coreinit_fiber Fiber | ||
* \ingroup coreinit | ||
* | ||
* @{ | ||
*/ | ||
|
||
#ifdef __cplusplus | ||
extern "C" { | ||
#endif | ||
|
||
typedef void (*OSFiberEntryFn)(); | ||
typedef void (*OSFiberExEntryFn)(uint32_t arg1, uint32_t arg2, | ||
uint32_t arg3, uint32_t arg4); | ||
|
||
int32_t | ||
OSSwitchFiber(OSFiberEntryFn entry, | ||
void *stack); | ||
|
||
int32_t | ||
OSSwitchFiberEx(uint32_t arg1, | ||
uint32_t arg2, | ||
uint32_t arg3, | ||
uint32_t arg4, | ||
OSFiberExEntryFn entry, | ||
void *stack); | ||
|
||
#ifdef __cplusplus | ||
} | ||
#endif | ||
|
||
/** @} */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters