aboutsummaryrefslogtreecommitdiff
path: root/libgui/msg.c
blob: 4576a5f72144d608eb230ae15a3ee84bc24e1d2b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// MIT License, Copyright (c) 2021 Marvin Borner

#include <assert.h>
#include <msg.h>
#include <print.h>
#include <sys.h>

static struct message msg_buf = { 0 };

int msg_send(u32 pid, enum message_type type, void *data)
{
	assert((signed)pid != -1);
	char path[32] = { 0 };
	sprintf(path, "/proc/%d/msg", pid);
	msg_buf.magic = MSG_MAGIC;
	msg_buf.src = getpid();
	msg_buf.type = type;
	msg_buf.data = data;
	return write(path, &msg_buf, 0, sizeof(msg_buf));
}

int msg_receive(struct message *msg)
{
	int ret = read("/proc/self/msg", msg, 0, sizeof(*msg));
	if (msg->magic == MSG_MAGIC && ret == sizeof(*msg))
		return ret;
	else
		return -1;
}