Remove unused TIMING.

This commit is contained in:
Dave Davenport 2015-02-19 13:11:39 +01:00
parent b143a8cd94
commit d9db18266c
3 changed files with 0 additions and 56 deletions

View File

@ -37,15 +37,6 @@ AC_ARG_ENABLE(gcov,
[ --enable-gcov Enable source code coverage testing using gcov],
[CFLAGS="$CFLAGS -fprofile-arcs -ftest-coverage"])
dnl
dnl Enable timing debug output.
dnl
AC_ARG_ENABLE(timings,
[ --enable-timings Enable debug information about timings],
[CFLAGS="$CFLAGS -DTIMING"])
##
# Check dependencies
##

View File

@ -42,9 +42,6 @@
#include "helper.h"
#include "history.h"
#include "dialogs/run-dialog.h"
#ifdef TIMING
#include <time.h>
#endif
#define RUN_CACHE_FILE "rofi-2.runcache"
@ -175,10 +172,6 @@ static char ** get_apps ( char **retv, unsigned int *length )
{
unsigned int num_favorites = 0;
char *path;
#ifdef TIMING
struct timespec start, stop;
clock_gettime ( CLOCK_REALTIME, &start );
#endif
if ( getenv ( "PATH" ) == NULL ) {
return NULL;
@ -250,18 +243,6 @@ static char ** get_apps ( char **retv, unsigned int *length )
qsort ( &retv[num_favorites], ( *length ) - num_favorites, sizeof ( char* ), sort_func );
}
g_free ( path );
#ifdef TIMING
{
clock_gettime ( CLOCK_REALTIME, &stop );
if ( stop.tv_sec != start.tv_sec ) {
stop.tv_nsec += ( stop.tv_sec - start.tv_sec ) * 1e9;
}
long diff = stop.tv_nsec - start.tv_nsec;
printf ( "Time elapsed: %ld us\n", diff / 1000 );
}
#endif
unsigned int removed = 0;
for ( unsigned int index = num_favorites; index < ( ( *length ) - 1 ); index++ ) {
@ -279,18 +260,6 @@ static char ** get_apps ( char **retv, unsigned int *length )
// Reduce array length;
( *length ) -= removed;
#ifdef TIMING
{
clock_gettime ( CLOCK_REALTIME, &stop );
if ( stop.tv_sec != start.tv_sec ) {
stop.tv_nsec += ( stop.tv_sec - start.tv_sec ) * 1e9;
}
long diff = stop.tv_nsec - start.tv_nsec;
printf ( "Time elapsed: %ld us\n", diff / 1000 );
}
#endif
return retv;
}

View File

@ -43,9 +43,6 @@
#include "rofi.h"
#include "history.h"
#include "dialogs/ssh-dialog.h"
#ifdef TIMING
#include <time.h>
#endif
#define SSH_CACHE_FILE "rofi-2.sshcache"
@ -120,10 +117,6 @@ static char ** get_ssh ( unsigned int *length )
unsigned int num_favorites = 0;
char *path;
char **retv = NULL;
#ifdef TIMING
struct timespec start, stop;
clock_gettime ( CLOCK_REALTIME, &start );
#endif
if ( getenv ( "HOME" ) == NULL ) {
return NULL;
@ -197,16 +190,7 @@ static char ** get_ssh ( unsigned int *length )
qsort ( &retv[num_favorites], ( *length ) - num_favorites, sizeof ( char* ), ssh_sort_func );
}
g_free ( path );
#ifdef TIMING
clock_gettime ( CLOCK_REALTIME, &stop );
if ( stop.tv_sec != start.tv_sec ) {
stop.tv_nsec += ( stop.tv_sec - start.tv_sec ) * 1e9;
}
long diff = stop.tv_nsec - start.tv_nsec;
printf ( "Time elapsed: %ld us\n", diff / 1000 );
#endif
return retv;
}