File: struct_kernel_msqid64_ds.h

package info (click to toggle)
glibc 2.36-8
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 297,608 kB
  • sloc: ansic: 1,054,210; asm: 325,317; makefile: 14,967; python: 12,603; sh: 10,817; cpp: 5,685; awk: 1,883; perl: 518; yacc: 292; pascal: 182; sed: 39
file content (33 lines) | stat: -rw-r--r-- 880 bytes parent folder | download | duplicates (12)
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
/* Analogous to kernel struct msqid64_ds used on msgctl.  */
struct kernel_msqid64_ds
{
  struct ipc_perm msg_perm;
#if __TIMESIZE == 32
# ifdef __MIPSEL__
  unsigned long int msg_stime;
  unsigned long int msg_stime_high;
  unsigned long int msg_rtime;
  unsigned long int msg_rtime_high;
  unsigned long int msg_ctime;
  unsigned long int msg_ctime_high;
# else
  unsigned long int msg_stime_high;
  unsigned long int msg_stime;
  unsigned long int msg_rtime_high;
  unsigned long int msg_rtime;
  unsigned long int msg_ctime_high;
  unsigned long int msg_ctime;
# endif
#else
  unsigned long int msg_stime;
  unsigned long int msg_rtime;
  unsigned long int msg_ctime;
#endif
  unsigned long int msg_cbytes;
  unsigned long int msg_qnum;
  unsigned long int msg_qbytes;
  __pid_t msg_lspid;
  __pid_t msg_lrpid;
  unsigned long int __unused1;
  unsigned long int __unused2;
};