diff options
author | SMOKE5 | 2015-10-11 21:17:07 -0400 |
---|---|---|
committer | SMOKE5 | 2015-10-11 21:17:07 -0400 |
commit | a3aee47a59af3b0552649160c4474f7f339e268e (patch) | |
tree | 02d4ed43e588bba36a5dd9a4a76b25d62384920f /include/user/kernel/processmgr.h | |
parent | Adds BusClockFrequency and GpuClockFrequency to db.json. (diff) | |
download | vds-libraries-a3aee47a59af3b0552649160c4474f7f339e268e.tar.gz |
Fixed the inconsistency in the headers as discussed in issue #4 and #vitasdk
Diffstat (limited to '')
-rw-r--r-- | include/user/kernel/processmgr.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/include/user/kernel/processmgr.h b/include/user/kernel/processmgr.h index e5e2a12..68008c0 100644 --- a/include/user/kernel/processmgr.h +++ b/include/user/kernel/processmgr.h @@ -9,26 +9,26 @@ extern "C" { #endif enum { - PSP2_KERNEL_PROCESS_PRIORITY_SYSTEM_HIGH = 32, - PSP2_KERNEL_PROCESS_PRIORITY_SYSTEM_DEFAULT = 96, - PSP2_KERNEL_PROCESS_PRIORITY_SYSTEM_LOW = 159 + SCE_KERNEL_PROCESS_PRIORITY_SYSTEM_HIGH = 32, + SCE_KERNEL_PROCESS_PRIORITY_SYSTEM_DEFAULT = 96, + SCE_KERNEL_PROCESS_PRIORITY_SYSTEM_LOW = 159 }; enum { - PSP2_KERNEL_PROCESS_PRIORITY_USER_HIGH = 64, - PSP2_KERNEL_PROCESS_PRIORITY_USER_DEFAULT = 96, - PSP2_KERNEL_PROCESS_PRIORITY_USER_LOW = 127 + SCE_KERNEL_PROCESS_PRIORITY_USER_HIGH = 64, + SCE_KERNEL_PROCESS_PRIORITY_USER_DEFAULT = 96, + SCE_KERNEL_PROCESS_PRIORITY_USER_LOW = 127 }; enum { /** Cancel all timers */ - PSP2_KERNEL_POWER_TICK_DEFAULT = 0, + SCE_KERNEL_POWER_TICK_DEFAULT = 0, /** Cancel automatic suspension timer */ - PSP2_KERNEL_POWER_TICK_DISABLE_AUTO_SUSPEND = 1, + SCE_KERNEL_POWER_TICK_DISABLE_AUTO_SUSPEND = 1, /** Cancel OLED-off timer */ - PSP2_KERNEL_POWER_TICK_DISABLE_OLED_OFF = 4, + SCE_KERNEL_POWER_TICK_DISABLE_OLED_OFF = 4, /** Cancel OLED dimming timer */ - PSP2_KERNEL_POWER_TICK_DISABLE_OLED_DIMMING = 6 + SCE_KERNEL_POWER_TICK_DISABLE_OLED_DIMMING = 6 }; /*** |