summarylogtreecommitdiffstats
path: root/0001-Remove-shmctl.patch
blob: 8c562c94e05e9903008d820f28ea3fec28b23da6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
--- a/opal/mca/memory/patcher/memory_patcher_component.c
+++ b/opal/mca/memory/patcher/memory_patcher_component.c
@@ -461,15 +461,7 @@
 
 static size_t get_shm_size(int shmid)
 {
-    struct shmid_ds ds;
-    int ret;
-
-    ret = shmctl(shmid, IPC_STAT, &ds);
-    if (ret < 0) {
-        return 0;
-    }
-
-    return ds.shm_segsz;
+    return 0;
 }
 #    endif
 #endif