rework langinfo code for ABI compat and for use by time code
[musl] / arch / microblaze / bits / shm.h
1 #define SHMLBA 4096
2
3 struct shmid_ds
4 {
5         struct ipc_perm shm_perm;
6         size_t shm_segsz;
7         time_t shm_atime;
8         int __unused1;
9         time_t shm_dtime;
10         int __unused2;
11         time_t shm_ctime;
12         int __unused3;
13         pid_t shm_cpid;
14         pid_t shm_lpid;
15         unsigned long shm_nattch;
16         unsigned long __pad1;
17         unsigned long __pad2;
18 };