~ubuntu-branches/ubuntu/wily/musl/wily

« back to all changes in this revision

Viewing changes to arch/powerpc/bits/shm.h

  • Committer: Package Import Robot
  • Author(s): Kevin Bortis
  • Date: 2014-03-22 09:39:56 UTC
  • mfrom: (4.1.2 sid)
  • Revision ID: package-import@ubuntu.com-20140322093956-1oc4xt9b2n3domo7
Tags: 1.0.0-1
* Import upstream version 1.0.0
* Provide musl-ldd (Closes: #732169)
* Arch independent ld-musl-config (Closes: #739205)

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
struct shmid_ds
4
4
{
5
5
        struct ipc_perm shm_perm;
6
 
        size_t shm_segsz;
 
6
        int __unused1;
7
7
        time_t shm_atime;
8
 
        int __unused1;
 
8
        int __unused2;
9
9
        time_t shm_dtime;
10
 
        int __unused2;
 
10
        int __unused3;
11
11
        time_t shm_ctime;
12
 
        int __unused3;
 
12
        int __unused4;
 
13
        size_t shm_segsz;
13
14
        pid_t shm_cpid;
14
15
        pid_t shm_lpid;
15
16
        unsigned long shm_nattch;
16
17
        unsigned long __pad1;
17
18
        unsigned long __pad2;
18
19
};
 
20
 
 
21
struct shminfo {
 
22
        unsigned long shmmax, shmmin, shmmni, shmseg, shmall, __unused[4];
 
23
};
 
24
 
 
25
struct shm_info {
 
26
        int __used_ids;
 
27
        unsigned long shm_tot, shm_rss, shm_swp;
 
28
        unsigned long __swap_attempts, __swap_successes;
 
29
};
 
30