define LONG_MAX via arch alltypes.h, strip down bits/limits.h
[musl] / arch / microblaze / bits / shm.h
index 8807c4f..81b2a29 100644 (file)
@@ -1,7 +1,6 @@
 #define SHMLBA 4096
 
-struct shmid_ds
-{
+struct shmid_ds {
        struct ipc_perm shm_perm;
        size_t shm_segsz;
        time_t shm_atime;
@@ -16,3 +15,13 @@ struct shmid_ds
        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;
+};