minor syscall change

This commit is contained in:
Able 2022-01-01 18:16:16 -06:00
parent f2dfad3162
commit e95e0a8bc6

View file

@ -34,11 +34,9 @@ syscall_enum! {
CONSOLE_OUT=3, // Console output CONSOLE_OUT=3, // Console output
CONSOLE_GET_TITLE=4, // Get the console title CONSOLE_GET_TITLE=4, // Get the console title
CONSOLE_SET_TITLE=5, // Set the console title CONSOLE_SET_TITLE=5, // Set the console title
GET_PID=6, // Get the proccess ID CONSOLE_GET_BAR=6,
PROCESS_INFO=7, // Get information about the process CONSOLE_SET_BAR=7,
//scheduler Related Syscals
GET_PRIORITY=8, // Get scheduler priority
SET_PRIORITY=9, // Set scheduler priority
// //
GET_HOSTNAME=10, GET_HOSTNAME=10,
SET_HOSTNAME=11, SET_HOSTNAME=11,
@ -84,7 +82,11 @@ syscall_enum! {
SOCKET_RECEIVE=43, SOCKET_RECEIVE=43,
GET_PID=44, // Get the proccess ID
PROCESS_INFO=45, // Get information about the process
//scheduler Related Syscals
GET_PRIORITY=46, // Get scheduler priority
SET_PRIORITY=47, // Set scheduler priority
EXIT=50, EXIT=50,
EMPTY=0xFFFF, EMPTY=0xFFFF,