diff options
author | rofl0r <retnyg@gmx.net> | 2014-01-11 13:41:50 +0100 |
---|---|---|
committer | rofl0r <retnyg@gmx.net> | 2014-02-23 11:07:18 +0100 |
commit | 0f169cbb79c39a5b15f7a27d9283cdeb6e122b8f (patch) | |
tree | e9235f57fecb9a9fa27a9232cbfbee7ecef62dcc /include | |
parent | 1a2e55b95a2cf51616cce7b46f9a30e820679314 (diff) | |
download | musl-0f169cbb79c39a5b15f7a27d9283cdeb6e122b8f.tar.gz musl-0f169cbb79c39a5b15f7a27d9283cdeb6e122b8f.tar.xz musl-0f169cbb79c39a5b15f7a27d9283cdeb6e122b8f.zip |
sys/shm.h: move arch specific structs to bits/
Diffstat (limited to 'include')
-rw-r--r-- | include/sys/shm.h | 23 |
1 files changed, 7 insertions, 16 deletions
diff --git a/include/sys/shm.h b/include/sys/shm.h index d97e582c..67be822b 100644 --- a/include/sys/shm.h +++ b/include/sys/shm.h @@ -14,6 +14,13 @@ extern "C" { #include <bits/alltypes.h> #include <sys/ipc.h> + +#ifdef _GNU_SOURCE +#define __used_ids used_ids +#define __swap_attempts swap_attempts +#define __swap_successes swap_successes +#endif + #include <bits/shm.h> #define SHM_R 0400 @@ -33,22 +40,6 @@ extern "C" { #define SHM_HUGETLB 04000 #define SHM_NORESERVE 010000 -struct shminfo { - unsigned long shmmax, shmmin, shmmni, shmseg, shmall, __unused[4]; -}; - -#ifdef _GNU_SOURCE -#define __used_ids used_ids -#define __swap_attempts swap_attempts -#define __swap_successes swap_successes -#endif - -struct shm_info { - int __used_ids; - unsigned long shm_tot, shm_rss, shm_swp; - unsigned long __swap_attempts, __swap_successes; -}; - typedef unsigned long shmatt_t; void *shmat(int, const void *, int); |