blob: 7b992f71119bdc964fb98991d18e39a166b8b6cb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
--- clients/ms_memslap.h.orig 2020-08-22 10:06:28 UTC
+++ clients/ms_memslap.h
@@ -116,14 +116,14 @@ typedef struct global
bool time_out;
} ms_global_t;
-/* global structure */
-ms_global_t ms_global;
+/* global structure, defined in memaslap.c */
+extern ms_global_t ms_global;
-/* global stats information structure */
-ms_stats_t ms_stats;
+/* global stats information structure, defined in memaslap.c */
+extern ms_stats_t ms_stats;
-/* global statistic structure */
-ms_statistic_t ms_statistic;
+/* global statistic structure, defined in mamaslap.c */
+extern ms_statistic_t ms_statistic;
#ifdef __cplusplus
}
|