summaryrefslogtreecommitdiffstats
path: root/sys-utils/ipcutils.h
diff options
context:
space:
mode:
authorRuediger Meier2016-02-08 15:38:48 +0100
committerRuediger Meier2016-02-11 12:31:03 +0100
commit8fe76cd1711e2e0039e274fd79c859182b97348f (patch)
tree69c0bdbd2986fc9afb56d05bfc3133ab9b192361 /sys-utils/ipcutils.h
parentlibcommon: don't include sysinfo.h (diff)
downloadkernel-qcow2-util-linux-8fe76cd1711e2e0039e274fd79c859182b97348f.tar.gz
kernel-qcow2-util-linux-8fe76cd1711e2e0039e274fd79c859182b97348f.tar.xz
kernel-qcow2-util-linux-8fe76cd1711e2e0039e274fd79c859182b97348f.zip
ipcs: ulong -> unsigned long
Signed-off-by: Ruediger Meier <ruediger.meier@ga-group.nl>
Diffstat (limited to 'sys-utils/ipcutils.h')
-rw-r--r--sys-utils/ipcutils.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/sys-utils/ipcutils.h b/sys-utils/ipcutils.h
index 26fbbcf4d..444065a83 100644
--- a/sys-utils/ipcutils.h
+++ b/sys-utils/ipcutils.h
@@ -35,11 +35,11 @@
# define SHM_INFO 14
struct shm_info {
int used_ids;
- ulong shm_tot; /* total allocated shm */
- ulong shm_rss; /* total resident shm */
- ulong shm_swp; /* total swapped shm */
- ulong swap_attempts;
- ulong swap_successes;
+ unsigned long shm_tot; /* total allocated shm */
+ unsigned long shm_rss; /* total resident shm */
+ unsigned long shm_swp; /* total swapped shm */
+ unsigned long swap_attempts;
+ unsigned long swap_successes;
};
#endif