]> granicus.if.org Git - php/commitdiff
- moved STR2STR, BOOL2STR and PM2STR from fpm_conf.h to fpm_conf.c (Giovanni Giacobbi)
authorJérôme Loyet <fat@php.net>
Tue, 5 Jul 2011 01:24:10 +0000 (01:24 +0000)
committerJérôme Loyet <fat@php.net>
Tue, 5 Jul 2011 01:24:10 +0000 (01:24 +0000)
sapi/fpm/fpm/fpm_conf.c
sapi/fpm/fpm/fpm_conf.h

index 0a1494d40428c23671499ebe6dc9f05683748a94..cc7baea31e7e485299cd2c05f7bc507182a6c20b 100644 (file)
 #include "fpm_log.h"
 #include "zlog.h"
 
+#define STR2STR(a) (a ? a : "undefined")
+#define BOOL2STR(a) (a ? "yes" : "no")
+#define PM2STR(a) (a == PM_STYLE_STATIC ? "static" : "dynamic")
+#define GO(field) offsetof(struct fpm_global_config_s, field)
+#define WPO(field) offsetof(struct fpm_worker_pool_config_s, field)
+
 static int fpm_conf_load_ini_file(char *filename TSRMLS_DC);
 static char *fpm_conf_set_integer(zval *value, void **config, intptr_t offset);
 static char *fpm_conf_set_time(zval *value, void **config, intptr_t offset);
@@ -60,9 +66,6 @@ static char *ini_filename = NULL;
 static int ini_lineno = 0;
 static char *ini_include = NULL;
 
-#define GO(field) offsetof(struct fpm_global_config_s, field)
-#define WPO(field) offsetof(struct fpm_worker_pool_config_s, field)
-
 static struct ini_value_parser_s ini_fpm_global_options[] = {
        { "emergency_restart_threshold",        &fpm_conf_set_integer,          GO(emergency_restart_threshold) },
        { "emergency_restart_interval",         &fpm_conf_set_time,                             GO(emergency_restart_interval) },
index d1087641d38e9faac9a89bfbc7affe19d537bfb4..e8615ebae0ebb83516089878b86cfaa1ed0eb55e 100644 (file)
 
 #define FPM_CONF_MAX_PONG_LENGTH 64
 
-#define STR2STR(a) (a ? a : "undefined")
-#define BOOL2STR(a) (a ? "yes" : "no")
-#define PM2STR(a) (a == PM_STYLE_STATIC ? "static" : "dynamic")
-
 struct key_value_s;
 
 struct key_value_s {