diff options
author | Sergi Granell | 2017-01-14 10:48:40 +0100 |
---|---|---|
committer | Sergi Granell | 2017-01-14 10:48:40 +0100 |
commit | 26fc1b1f39fdea3798e10d357cbd9b21ac8f0753 (patch) | |
tree | 161cbeb3dd2d10590aa9510cc648245ad6a33aaf /include/user/kernel | |
parent | Add Condition variables prototypes (diff) | |
download | vds-libraries-26fc1b1f39fdea3798e10d357cbd9b21ac8f0753.tar.gz |
Fix sceKernelCreateCond example
Diffstat (limited to 'include/user/kernel')
-rw-r--r-- | include/user/kernel/threadmgr.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/user/kernel/threadmgr.h b/include/user/kernel/threadmgr.h index ef9c58c..e8376d0 100644 --- a/include/user/kernel/threadmgr.h +++ b/include/user/kernel/threadmgr.h @@ -729,8 +729,8 @@ typedef struct SceKernelCondInfo { * * @par Example: * @code - * int condition variableid; - * condition variableid = sceKernelCreateCond("MyCond", 0, mutexId, NULL); + * SceUID condId; + * condId = sceKernelCreateCond("MyCond", 0, mutexId, NULL); * @endcode * * @param name - Specifies the name of the condition variable |