mirror of
git://git.musl-libc.org/musl
synced 2024-12-26 08:32:26 +00:00
07e865cc5a
some of these definitions were just plain wrong, others based on outdated ancient "non-64" versions of the kernel interface. as much as possible has now been moved out of bits/* these changes break abi (the old abi for these functions was wrong), but since they were not working anyway it can hardly matter.
37 lines
666 B
C
37 lines
666 B
C
#ifndef _SYS_MSG_H
|
|
#define _SYS_MSG_H
|
|
|
|
#include <sys/ipc.h>
|
|
|
|
#define __NEED_pid_t
|
|
#define __NEED_key_t
|
|
#define __NEED_time_t
|
|
#define __NEED_size_t
|
|
#define __NEED_ssize_t
|
|
|
|
#include <bits/alltypes.h>
|
|
|
|
typedef unsigned long msgqnum_t;
|
|
typedef unsigned long msglen_t;
|
|
|
|
#include <bits/msg.h>
|
|
|
|
#define __msg_cbytes msg_cbytes
|
|
|
|
#define MSG_NOERROR 010000
|
|
|
|
#define MSG_STAT 11
|
|
#define MSG_INFO 12
|
|
|
|
struct msginfo {
|
|
int msgpool, msgmap, msgmax, msgmnb, msgmni, msgssz, msgtql;
|
|
unsigned short msgseg;
|
|
};
|
|
|
|
int msgctl (int, int, struct msqid_ds *);
|
|
int msgget (key_t, int);
|
|
ssize_t msgrcv (int, void *, size_t, long, int);
|
|
int msgsnd (int, const void *, size_t, int);
|
|
|
|
#endif
|