summaryrefslogtreecommitdiff
path: root/include/user/kernel/threadmgr.h
diff options
context:
space:
mode:
authorHexxellor2017-03-28 15:32:26 -0500
committerdevnoname1202017-03-28 22:32:26 +0200
commit5568baf51c4b787ff3ce338948bc6faed34c2320 (patch)
tree3452914d79092392b496b0611bdccf3f67a4b818 /include/user/kernel/threadmgr.h
parentAdded 3 SceSysclibForDriver NIDs (diff)
downloadvds-libraries-5568baf51c4b787ff3ce338948bc6faed34c2320.tar.gz
Typo fixing, and misnamed struct (#151)
* Fixing Mostly Harmless Typos This fixes a bunch of miscellaneous typos and grammatical mistakes in the source which were mostly harmless with the exception of the ScreenShotParam in psp2/screenshot.h which didn’t match the name of the struct causing it to fail when using that header.
Diffstat (limited to 'include/user/kernel/threadmgr.h')
-rw-r--r--include/user/kernel/threadmgr.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/include/user/kernel/threadmgr.h b/include/user/kernel/threadmgr.h
index 3681c19..d26272b 100644
--- a/include/user/kernel/threadmgr.h
+++ b/include/user/kernel/threadmgr.h
@@ -296,7 +296,7 @@ int sceKernelGetThreadInfo(SceUID thid, SceKernelThreadInfo *info);
/**
* Retrive the runtime status of a thread.
*
- * @param thid - UID of the thread to retrive status.
+ * @param thid - UID of the thread to retrieve status.
* @param status - Pointer to a ::SceKernelThreadRunStatus struct to receive the runtime status.
*
* @return 0 if successful, otherwise the error code.
@@ -356,7 +356,7 @@ SceUID sceKernelCreateSema(const char *name, SceUInt attr, int initVal, int maxV
* Destroy a semaphore
*
* @param semaid - The semaid returned from a previous create call.
- * @return Returns the value 0 if its succesful otherwise -1
+ * @return Returns the value 0 if it's successful, otherwise -1
*/
int sceKernelDeleteSema(SceUID semaid);
@@ -491,7 +491,7 @@ SceUID sceKernelCreateMutex(const char *name, SceUInt attr, int initCount, SceKe
* Destroy a mutex
*
* @param mutexid - The mutex id returned from sceKernelCreateMutex
- * @return Returns the value 0 if its succesful otherwise -1
+ * @return Returns the value 0 if it's successful, otherwise -1
*/
int sceKernelDeleteMutex(SceUID mutexid);
@@ -499,7 +499,7 @@ int sceKernelDeleteMutex(SceUID mutexid);
* Open a mutex
*
* @param name - The name of the mutex to open
- * @return Returns the value 0 if its succesful otherwise -1
+ * @return Returns the value 0 if it's successful, otherwise -1
*/
int sceKernelOpenMutex(const char *name);
@@ -507,7 +507,7 @@ int sceKernelOpenMutex(const char *name);
* Close a mutex
*
* @param mutexid - The mutex id returned from sceKernelCreateMutex
- * @return Returns the value 0 if its succesful otherwise -1
+ * @return Returns the value 0 if it's successful, otherwise -1
*/
int sceKernelCloseMutex(SceUID mutexid);
@@ -745,7 +745,7 @@ SceUID sceKernelCreateCond(const char *name, SceUInt attr, SceUID mutexId, const
* Destroy a condition variable
*
* @param condition variableid - The condition variable id returned from sceKernelCreateCond
- * @return Returns the value 0 if its succesful otherwise -1
+ * @return Returns the value 0 if it's successful, otherwise -1
*/
int sceKernelDeleteCond(SceUID condId);
@@ -753,7 +753,7 @@ int sceKernelDeleteCond(SceUID condId);
* Open a condition variable
*
* @param name - The name of the condition variable to open
- * @return Returns the value 0 if its succesful otherwise -1
+ * @return Returns the value 0 if it's successful, otherwise -1
*/
int sceKernelOpenCond(const char *name);
@@ -761,7 +761,7 @@ int sceKernelOpenCond(const char *name);
* Close a condition variable
*
* @param condition variableid - The condition variable id returned from sceKernelCreateCond
- * @return Returns the value 0 if its succesful otherwise -1
+ * @return Returns the value 0 if it's successful, otherwise -1
*/
int sceKernelCloseCond(SceUID condId);
@@ -885,7 +885,7 @@ int sceKernelNotifyCallback(SceUID cb, int arg2);
*
* @param cb - The UID of the specified callback
*
- * @return 0 on succes, < 0 on error
+ * @return 0 on success, < 0 on error
*/
int sceKernelCancelCallback(SceUID cb);
@@ -1090,7 +1090,7 @@ typedef enum SceKernelIdListType {
} SceKernelIdListType;
/**
- * Get the type of a threadman uid
+ * Get the type of a Threadmgr uid
*
* @param uid - The uid to get the type from
*