Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/zabbix/zabbix.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAleksandrs Saveljevs <git-no-reply@zabbix.com>2010-05-11 18:21:24 +0400
committerAleksandrs Saveljevs <git-no-reply@zabbix.com>2010-05-11 18:21:24 +0400
commit6b6a5f47c7faa13faefc183da413b780b9e53c5f (patch)
tree8beec432d2fc619b3b26bfbbf8204e3a9a8668a7 /include/zbxtypes.h
parent70912cb9800984af3c0263e6bd2ce5ea0f9b7a66 (diff)
- [ZBXNEXT-313] implemented string pool for configuration cache (asaveljevs)
[svn merge svn://svn.zabbix.com/branches/1.8 -r 11909:11913]
Diffstat (limited to 'include/zbxtypes.h')
-rw-r--r--include/zbxtypes.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/zbxtypes.h b/include/zbxtypes.h
index 6b614332bf3..99b61ecc999 100644
--- a/include/zbxtypes.h
+++ b/include/zbxtypes.h
@@ -20,9 +20,11 @@
#ifndef ZABBIX_TYPES_H
#define ZABBIX_TYPES_H
-#define ZBX_FS_DBL "%lf"
+#define ZBX_FS_DBL "%lf"
#define ZBX_FS_DBL_EXT(p) "%." #p "lf"
+#define ZBX_PTR_SIZE sizeof(void *)
+
#if defined(_WINDOWS)
#ifdef _UNICODE
@@ -127,5 +129,4 @@
#define ZBX_CONST_STRING(str) ""str
-
#endif