Welcome to mirror list, hosted at ThFree Co, Russian Federation.

msg.h « cygwin « include « cygwin « winsup - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c737971eae13de8da71b94f8b032b31541add930 (plain)
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
/* sys/msg.h

   Copyright 2002, 2012, 2013 Red Hat Inc.
   Written by Conrad Scott <conrad.scott@dsl.pipex.com>

This file is part of Cygwin.

This software is a copyrighted work licensed under the terms of the
Cygwin license.  Please consult the file "CYGWIN_LICENSE" for
details. */

#ifndef _CYGWIN_MSG_H
#define _CYGWIN_MSG_H

#include <cygwin/ipc.h>

#ifdef __cplusplus
extern "C"
{
#endif

/* Message operation flags:
 */
#define MSG_NOERROR 0x01	/* No error if big message. */

#ifdef _KERNEL
/* Command definitions for the semctl () function:
 */
#define MSG_STAT   0x2000	/* For ipcs(8) */
#define MSG_INFO   0x2001	/* For ipcs(8) */
#endif /* _KERNEL */

/* Used for the number of messages in the message queue.
 */
typedef uint32_t msgqnum_t;

/* Used for the number of bytes allowed in a message queue.
 */
typedef uint32_t msglen_t;

struct msqid_ds
{
  struct ipc_perm msg_perm;	/* Operation permission structure. */
  msglen_t        msg_cbytes;	/* Number of bytes currently on queue. */
  msgqnum_t       msg_qnum;	/* Number of messages currently on queue. */
  msglen_t        msg_qbytes;	/* Maximum number of bytes allowed on queue. */
  pid_t           msg_lspid;	/* Process ID of last msgsnd (). */
  pid_t           msg_lrpid;	/* Process ID of last msgrcv (). */
  timestruc_t     msg_stim;	/* Time of last msgsnd (). */
  timestruc_t     msg_rtim;	/* Time of last msgrcv (). */
  timestruc_t     msg_ctim;	/* Time of last change. */
#ifdef _KERNEL
  struct msg     *msg_first;
  struct msg     *msg_last;
#else
  long            msg_spare4[2];
#endif /* _KERNEL */
};

#define msg_stime msg_stim.tv_sec
#define msg_rtime msg_rtim.tv_sec
#define msg_ctime msg_ctim.tv_sec

#ifdef _KERNEL
/* Buffer type for msgctl (IPC_INFO, ...) as used by ipcs(8).
 */
struct msginfo
{
  int32_t msgmax;	/* Maximum number of bytes per
			   message. */
  int32_t msgmnb;	/* Maximum number of bytes on any one
			   message queue. */
  int32_t msgmni;	/* Maximum number of message queues,
			   system wide. */
  int32_t msgtql;	/* Maximum number of messages, system
			   wide. */
  int32_t msgssz;	/* Size of a message segment, must be
			   small power of 2 greater than 4. */
  int32_t msgseg;	/* Number of message segments */
  int32_t msg_spare[2];
};

/* Buffer type for msgctl (MSG_INFO, ...) as used by ipcs(8).
 */
struct msg_info
{
  int32_t msg_ids;		/* Number of allocated queues. */
  int32_t msg_num;		/* Number of messages, system wide. */
  int32_t msg_tot;		/* Size in bytes of messages, system wide. */
};
#endif /* _KERNEL */

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

#ifdef __cplusplus
}
#endif

#endif /* _CYGWIN_MSG_H */