summaryrefslogtreecommitdiffhomepage
path: root/arch/nt32/bits/shm.h
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2015-04-05 16:48:11 -0400
committermidipix <writeonce@midipix.org>2015-04-05 16:48:11 -0400
commit20a5ca45ef2f5716e8f2dea42c7e8a6b3367619f (patch)
treec8461f68b5f3bf375e31660eb14fbb7777e2f822 /arch/nt32/bits/shm.h
parent2a9a46e0b0a1f7e0e21b1152aa2529d94c57db35 (diff)
downloadmmglue-20a5ca45ef2f5716e8f2dea42c7e8a6b3367619f.tar.bz2
mmglue-20a5ca45ef2f5716e8f2dea42c7e8a6b3367619f.tar.xz
nt32/bits: initial commit.
these header files should be kept in sync with their linux x86_64 counterparts, with three minor exceptions: 1) page size (65536) 2) jmp_buf (8 pointers) 3) TIOCGPTN and TIOCSPTLCK (normal sequence) signed-off by Z. Gilboa; see copying.midipix (9cd0746c) for additional information.
Diffstat (limited to 'arch/nt32/bits/shm.h')
-rw-r--r--arch/nt32/bits/shm.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/arch/nt32/bits/shm.h b/arch/nt32/bits/shm.h
new file mode 100644
index 0000000..547581f
--- /dev/null
+++ b/arch/nt32/bits/shm.h
@@ -0,0 +1,29 @@
+#define SHMLBA 4096
+
+struct shmid_ds
+{
+ struct ipc_perm shm_perm;
+ size_t shm_segsz;
+ time_t shm_atime;
+ int __unused1;
+ time_t shm_dtime;
+ int __unused2;
+ time_t shm_ctime;
+ int __unused3;
+ pid_t shm_cpid;
+ pid_t shm_lpid;
+ unsigned long shm_nattch;
+ unsigned long __pad1;
+ unsigned long __pad2;
+};
+
+struct shminfo {
+ unsigned long shmmax, shmmin, shmmni, shmseg, shmall, __unused[4];
+};
+
+struct shm_info {
+ int __used_ids;
+ unsigned long shm_tot, shm_rss, shm_swp;
+ unsigned long __swap_attempts, __swap_successes;
+};
+