MCPcopy Create free account
hub / github.com/LemonOSProject/LemonOS / SysSendMessage

Function SysSendMessage

Kernel/src/arch/x86_64/syscalls.cpp:793–795  ·  view source on GitHub ↗

SendMessage(message_t* msg) - Sends an IPC message to a process

Source from the content-addressed store, hash-verified

791
792// SendMessage(message_t* msg) - Sends an IPC message to a process
793long SysSendMessage(regs64_t* r){
794 return -ENOSYS;
795}
796
797// RecieveMessage(message_t* msg) - Grabs next message on queue and copies it to msg
798long SysReceiveMessage(regs64_t* r){

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected