summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/include/sys/msg.h
blob: ea1e470b6de4628c4412fc07b25569ced0c45256 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef _SYS_MSG_H
#define _SYS_MSG_H

#include <linux/msg.h>
#include <sys/ipc.h>
#include <asm/page.h>

extern int msgctl (int msqid, int cmd, struct msqid_ds *buf) __THROW;
extern int msgget (key_t key, int msgflg) __THROW;
extern int msgrcv (int msqid, void *msgp, size_t msgsz, long int msgtyp, int msgflg) __THROW;
extern int msgsnd (int msqid, const void *msgp, size_t msgsz, int msgflg) __THROW;

#endif