From d47a3ffd88cc05a270405e4701ad19886a20a168 Mon Sep 17 00:00:00 2001 From: David Sklar Date: Thu, 16 Feb 2012 11:52:33 -0500 Subject: [PATCH] Whitespace cleanup and fix some compiler warnings --- extension/xhprof.c | 26 ++++++++++++++------------ 1 file changed, 14 insertions(+), 12 deletions(-) diff --git a/extension/xhprof.c b/extension/xhprof.c index 33311b38..0a97900a 100644 --- a/extension/xhprof.c +++ b/extension/xhprof.c @@ -48,7 +48,7 @@ #elif __APPLE__ /* * Patch for compiling in Mac OS X Leopard - * @author Svilen Spasov + * @author Svilen Spasov */ # include # include @@ -295,6 +295,15 @@ ZEND_END_ARG_INFO() ZEND_BEGIN_ARG_INFO(arginfo_xhprof_sample_disable, 0) ZEND_END_ARG_INFO() +/* }}} */ + +/** + * ********************* + * FUNCTION PROTOTYPES + * ********************* + */ +int restore_cpu_affinity(cpu_set_t * prev_mask); +int bind_to_cpu(uint32 cpu_id); /** * ********************* @@ -751,7 +760,6 @@ void hp_clean_profiler_state(TSRMLS_D) { size_t hp_get_entry_name(hp_entry_t *entry, char *result_buf, size_t result_len) { - size_t len = 0; /* Validate result_len */ if (result_len <= 1) { @@ -781,7 +789,7 @@ size_t hp_get_entry_name(hp_entry_t *entry, /** * Check if this entry should be ignored, first with a conservative Bloomish * filter then with an exact check against the function names. - * + * * @author mpal */ int hp_ignore_entry_work(uint8 hash_code, char *curr_func) { @@ -802,7 +810,7 @@ int hp_ignore_entry_work(uint8 hash_code, char *curr_func) { inline int hp_ignore_entry(uint8 hash_code, char *curr_func) { /* First check if ignoring functions is enabled */ - return hp_globals.ignored_function_names != NULL && + return hp_globals.ignored_function_names != NULL && hp_ignore_entry_work(hash_code, curr_func); } @@ -936,8 +944,6 @@ static char *hp_get_function_name(zend_op_array *ops TSRMLS_DC) { } } else { long curr_op; - int desc_len; - char *desc; int add_filename = 0; /* we are dealing with a special directive/function like @@ -1537,8 +1543,6 @@ zval * hp_mode_shared_endfn_cb(hp_entry_t *top, zval *counts; uint64 tsc_end; - double gtod_value, rdtsc_value; - /* Get end tsc counter */ tsc_end = cycle_timer(); @@ -1813,8 +1817,6 @@ static void hp_end(TSRMLS_D) { * hp_begin() and restores the original values. */ static void hp_stop(TSRMLS_D) { - zval *ret; - char *out_url; int hp_profile_flag = 1; /* End any unfinished calls */ @@ -1842,8 +1844,8 @@ static void hp_stop(TSRMLS_D) { */ /** Look in the PHP assoc array to find a key and return the zval associated - * with it. - * + * with it. + * * @author mpal **/ static zval *hp_zval_at_key(char *key,