aboutsummaryrefslogtreecommitdiffstats
path: root/ipc/util.h
diff options
context:
space:
mode:
Diffstat (limited to 'ipc/util.h')
-rw-r--r--ipc/util.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/ipc/util.h b/ipc/util.h
index 44348ca5a707..fc9a28be0797 100644
--- a/ipc/util.h
+++ b/ipc/util.h
@@ -30,7 +30,15 @@ struct ipc_ids {
30 struct ipc_id_ary* entries; 30 struct ipc_id_ary* entries;
31}; 31};
32 32
33struct seq_file;
33void __init ipc_init_ids(struct ipc_ids* ids, int size); 34void __init ipc_init_ids(struct ipc_ids* ids, int size);
35#ifdef CONFIG_PROC_FS
36void __init ipc_init_proc_interface(const char *path, const char *header,
37 struct ipc_ids *ids,
38 int (*show)(struct seq_file *, void *));
39#else
40#define ipc_init_proc_interface(path, header, ids, show) do {} while (0)
41#endif
34 42
35/* must be called with ids->sem acquired.*/ 43/* must be called with ids->sem acquired.*/
36int ipc_findkey(struct ipc_ids* ids, key_t key); 44int ipc_findkey(struct ipc_ids* ids, key_t key);