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

github.com/phpredis/phpredis.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Favre-Felix <n.favrefelix@gmail.com>2010-08-17 16:24:09 +0400
committerNicolas Favre-Felix <n.favrefelix@gmail.com>2010-08-17 16:24:09 +0400
commit6edae7c4b04ff9ab7f5efdf4b63dece3e5805ecf (patch)
treefa090045a7a7a99c70a4d62ad255243b0d9c00ed /php_redis.h
parent04976d36f3ed8fc1e31cf1739af99940d77a32b8 (diff)
Fixed ZTS problems.
Diffstat (limited to 'php_redis.h')
-rwxr-xr-xphp_redis.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/php_redis.h b/php_redis.h
index 234ad88a..9a69d97a 100755
--- a/php_redis.h
+++ b/php_redis.h
@@ -136,18 +136,18 @@ PHP_RINIT_FUNCTION(redis);
PHP_RSHUTDOWN_FUNCTION(redis);
PHP_MINFO_FUNCTION(redis);
-PHPAPI void redis_atomic_increment(INTERNAL_FUNCTION_PARAMETERS, char *keyword TSRMLS_DC);
+PHPAPI void redis_atomic_increment(INTERNAL_FUNCTION_PARAMETERS, char *keyword);
PHPAPI int generic_multiple_args_cmd(INTERNAL_FUNCTION_PARAMETERS, char *keyword, int keyword_len,
- int min_argc, RedisSock **redis_sock TSRMLS_DC);
-PHPAPI void generic_sort_cmd(INTERNAL_FUNCTION_PARAMETERS, char *sort, int use_alpha TSRMLS_DC);
-PHPAPI void generic_empty_cmd(INTERNAL_FUNCTION_PARAMETERS, char *cmd, int cmd_len TSRMLS_DC, ...);
-PHPAPI void generic_empty_long_cmd(INTERNAL_FUNCTION_PARAMETERS, char *cmd, int cmd_len TSRMLS_DC, ...);
+ int min_argc, RedisSock **redis_sock);
+PHPAPI void generic_sort_cmd(INTERNAL_FUNCTION_PARAMETERS, char *sort, int use_alpha);
+PHPAPI void generic_empty_cmd(INTERNAL_FUNCTION_PARAMETERS, char *cmd, int cmd_len, ...);
+PHPAPI void generic_empty_long_cmd(INTERNAL_FUNCTION_PARAMETERS, char *cmd, int cmd_len, ...);
PHPAPI void array_zip_values_and_scores(zval *z_tab, int use_atof TSRMLS_DC);
PHPAPI int redis_response_enqueued(RedisSock *redis_sock TSRMLS_DC);
-PHPAPI int get_flag(zval *object);
-PHPAPI void set_flag(zval *object, int new_flag);
+PHPAPI int get_flag(zval *object TSRMLS_DC);
+PHPAPI void set_flag(zval *object, int new_flag TSRMLS_DC);
/* MULTI/EXEC */
PHPAPI fold_item* get_multi_head(zval *object);