Mercurial > lcfOS
comparison user/lib/ipc.c3 @ 410:6aa9743ed362 tip
Reflect change in c3 public modifier
author | Windel Bouwman |
---|---|
date | Mon, 23 Feb 2015 21:06:04 +0100 |
parents | 0fb6633c42f6 |
children |
comparison
equal
deleted
inserted
replaced
408:ad6be5454067 | 410:6aa9743ed362 |
---|---|
16 function int kernelTrap(int msgId, int a, int b) | 16 function int kernelTrap(int msgId, int a, int b) |
17 { | 17 { |
18 // TODO: make this in assembler? | 18 // TODO: make this in assembler? |
19 } | 19 } |
20 | 20 |
21 function void SendMessage(Msg *msg) | 21 public function void SendMessage(Msg *msg) |
22 { | 22 { |
23 var int x; | 23 var int x; |
24 x=kernelTrap(MSG_SEND, 1, 0) | 24 x=kernelTrap(MSG_SEND, 1, 0) |
25 } | 25 } |
26 | 26 |