System/Libraries/Ipc: Add msg->timestamp to IpcMessage class
This commit is contained in:
parent
4fa0873123
commit
96226e6211
1 changed files with 2 additions and 0 deletions
|
@ -4,6 +4,7 @@
|
|||
|
||||
class IpcMessage {
|
||||
CTask* client;
|
||||
I64 timestamp;
|
||||
I64 type;
|
||||
U64 payload;
|
||||
I64 i64;
|
||||
|
@ -42,6 +43,7 @@ U0 @ipc_msg_send(
|
|||
Free(msg);
|
||||
return;
|
||||
}
|
||||
msg->timestamp = cnts.jiffies;
|
||||
FifoI64Ins(task->ipc, msg);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue