Skip to content

Commit

Permalink
Fix sceKernelChangeCurrentThreadAttr proto
Browse files Browse the repository at this point in the history
  • Loading branch information
isage committed Apr 17, 2022
1 parent 6348f75 commit ec18280
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions include/psp2/kernel/threadmgr.h
Original file line number Diff line number Diff line change
Expand Up @@ -214,12 +214,12 @@ int sceKernelDelayThreadCB(SceUInt delay);
/**
* Modify the attributes of the current thread.
*
* @param unknown - Set to 0.
* @param attr - The thread attributes to modify. One of ::SceThreadAttributes.
* @param clearAttr - The thread attributes to clear. One of ::SceThreadAttributes.
* @param setAttr - The thread attributes to set. One of ::SceThreadAttributes.
*
* @return < 0 on error.
*/
int sceKernelChangeCurrentThreadAttr(int unknown, SceUInt attr);
int sceKernelChangeCurrentThreadAttr(SceUInt clearAttr, SceUInt setAttr);

/**
* Change the threads current priority.
Expand Down

0 comments on commit ec18280

Please sign in to comment.