summaryrefslogtreecommitdiff
path: root/include/kernel (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Add const qualifier and attributeReiko Asakura2020-09-021-1/+6
|
* SceSysclib, SceRtabi: fix and add all NIDsReiko Asakura2020-08-201-16/+0
|
* Add sceAppMgrDrmOpen/CloseReiko Asakura2020-08-201-3/+7
|
* Add all remaining NIDs in SceSysclibForDriverReiko Asakura2020-07-251-0/+41
|
* Merge VitasdkReiko Asakura2020-07-2413-125/+149
|\
| * Update modulemgr structs (#453)Princess of Sleeping2020-06-291-7/+12
| | | | | | | | | | | | | | | | | | * Update modulemgr structs * Update modulemgr structs * Added SceKernelModuleState enum * Added SceKernelModuleState enum
| * Fix many args (#451)Princess of Sleeping2020-06-2613-117/+116
| | | | | | Changes document and variable types
| * Fix modulemgr two function arg name and documentPrincess of Sleeping2020-06-261-5/+5
| |
| * Fix one function name and argsPrincess of Sleeping2020-06-261-1/+1
| |
| * Fix two function name and argsPrincess of Sleeping2020-06-261-2/+23
| |
* | Add SceIofilemgr function prototypesReiko Asakura2020-07-231-0/+19
| |
* | Put common IO definitions into psp2commonReiko Asakura2020-07-234-103/+4
| |
* | Change `pragma GCC warning` to `pragma message`Reiko Asakura2020-07-231-1/+1
| | | | | | | | | | Because warnings in system headers will not appear except when -Wsystem-headers is given to gcc.
* | Add async IO functions for kernelReiko Asakura2020-07-234-0/+353
| |
* | Add thread event functions for kernelReiko Asakura2020-07-231-0/+23
| |
* | Add {,k}sceIo{Io,Dev}ctlAsync prototypesReiko Asakura2020-07-232-16/+42
| |
* | Refactor kernel IO functionsReiko Asakura2020-07-234-20/+435
| |
* | MergeReiko Asakura2020-07-054-17/+5
|\ \
| * | Add threadmgr constants and prototypesReiko Asakura2020-07-051-9/+1
| | |
| * | Add CPU constantsReiko Asakura2020-07-051-0/+1
| | |
| * | Add kernel constants headerReiko Asakura2020-07-052-3/+1
| | |
| * | Add types headersReiko Asakura2020-07-052-7/+4
| | |
* | | Merge VitasdkReiko Asakura2020-06-231-44/+61
|\ \ \ | |/ / |/| / | |/
| * Update modulemgr (#434)Princess of Sleeping2020-06-181-44/+61
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * update SceKernelModuleInfo and SceKernelSegmentInfo * update SceKernelModuleInfo and SceKernelSegmentInfo * fix wrong name of modulemgr nid * fix SceKernelModuleName * fix wrong function and wrong struct * fix sort * update SceKernelModuleInfo * update SceKernelModuleInfo
* | kernel fast mutex: add and fix all relatedReiko Asakura2020-05-231-10/+53
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 1. Renamed sceKernelDeleteFastMutex to sceKernelFinalizeFastMutex. This matches the name found in 0.940 prototype firmware and the NID has not changed since then. 2. Unlike lightweight mutex, the work area is not required to be 8 byte aligned, but I have done so anyway. 3. The work area's size is 0x40, but only 0x28 is used. However it is not safe to use a smaller work area because sceKernelFinalizeFastMutex memsets 0x40 bytes to 0. 4. The last field of the work area, 4 bytes long at offset 0x24, contains the dummy value 0xA35DB473 when the fast mutex is initialised. Functions in SceKernelThreadmgr related to fast mutex will check this value and this allows us to find all functions related to fast mutex.
* | Merge vitasdkReiko Asakura2020-04-211-0/+13
|\|
| * Added ksceKernelRegisterSysEventHandler to headerTheOfficialFloW2020-03-011-0/+13
| |
* | Corrections to SceIftuPlaneStateReiko Asakura2020-04-091-13/+13
| |
* | Add prototype ksceDisplaySetScaleConfReiko Asakura2020-04-031-0/+12
| |
* | Add prototype kscePowerSetPsButtonPushTimeReiko Asakura2020-04-011-0/+9
| |
* | Add ksceDebugVprintfReiko Asakura2020-03-241-1/+4
| |
* | Add prototype ksceSblACMgrIsPspEmuReiko Asakura2020-03-181-0/+1
| |
* | Add psp2kern/audioout.hReiko Asakura2020-03-181-0/+21
| |
* | Add process UID macrosReiko Asakura2020-03-181-0/+6
| |
* | Add macro SCE_KERNEL_THREAD_ID_SELFReiko Asakura2020-03-171-0/+3
| |
* | Add prototype kscePowerSetIdleTimerReiko Asakura2020-03-171-0/+10
| |
* | Transition to DolceSDKReiko Asakura2020-02-111-1/+1
|/
* Added kscePowerRequestSoftReset to headerTheOfficialFloW2020-02-011-0/+7
|
* Compiler-independent struct align macroNick Renieris2020-01-091-6/+7
|
* modulemgr.h: correct module_start/stop/exit offsets in SceKernelModuleInfoYumiko2019-12-091-1/+1
|
* psp2kern: Added some function and description of the modulemgr (#427)Princess of Sleeping2019-10-061-34/+320
| | | | | | | | | | * Added some function and description * update ksceKernelGetModuleInfoMinByAddr * update ksceKernelGetModuleInfoMinByAddr * fix SceKernelModuleName
* fixed ksceKernelGetModuleInfo2 and SceKernelModuleInfo2Princess of Sleeping2019-09-281-15/+15
|
* fixed wrong structure and function types of modulemgr.h (#425)Princess of Sleeping2019-09-271-11/+12
| | | | | | * fixed wrong structure and function types * fixed wrong structure and function types
* fixed ksceKernelFindClassByNamePrincess of Sleeping2019-09-251-1/+1
|
* fixed ksceIdStorageXXXXLeaf functionPrincess of Sleeping2019-09-251-4/+10
|
* fixed ksceKernelSearchModuleByNamePrincess of Sleeping2019-07-231-1/+1
|
* Fix wrong ksceKernelGetModuleList2 (#373)Princess of Sleeping2019-07-021-31/+56
| | | | | | | | | | * Fix wrong ksceKernelGetModuleList2 * Update modulemgr.h * Update modulemgr.h * change the formatting
* Changed sceDisplayGetProcFrameBufInternal headerTheOfficialFloW2019-02-241-1/+1
|
* add ksceAppMgrLaunchAppByPath headerDavee2019-02-181-0/+31
|
* add missing status param to ksceKernelSuspendProcessDavee2019-02-181-1/+2
|