Skip to content

Commit

Permalink
Whitespace cleanup and fix some compiler warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
davidsklar committed Feb 16, 2012
1 parent 469fe5a commit d47a3ff
Showing 1 changed file with 14 additions and 12 deletions.
26 changes: 14 additions & 12 deletions extension/xhprof.c
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
#elif __APPLE__
/*
* Patch for compiling in Mac OS X Leopard
* @author Svilen Spasov <s.spasov@gmail.com>
* @author Svilen Spasov <s.spasov@gmail.com>
*/
# include <mach/mach_init.h>
# include <mach/thread_policy.h>
Expand Down Expand Up @@ -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);

/**
* *********************
Expand Down Expand Up @@ -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) {
Expand Down Expand Up @@ -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) {
Expand All @@ -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);
}

Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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();

Expand Down Expand Up @@ -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 */
Expand Down Expand Up @@ -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,
Expand Down

0 comments on commit d47a3ff

Please sign in to comment.