diff probes.c @ 201:0320b49ca013

New include paths because of new project structure
author Merten Sach <msach@mailbox.tu-berlin.de>
date Mon, 13 Feb 2012 19:35:32 +0100
parents 9ddbb071142d
children
line diff
     1.1 --- a/probes.c	Fri Feb 03 19:04:12 2012 +0100
     1.2 +++ b/probes.c	Mon Feb 13 19:35:32 2012 +0100
     1.3 @@ -9,8 +9,8 @@
     1.4  #include <sys/time.h>
     1.5  
     1.6  #include "VMS.h"
     1.7 -#include "Queue_impl/BlockingQueue.h"
     1.8 -#include "Histogram/Histogram.h"
     1.9 +#include "C_Libraries/Queue_impl/BlockingQueue.h"
    1.10 +#include "C_Libraries/Histogram/Histogram.h"
    1.11  
    1.12  
    1.13  //================================ STATS ====================================
    1.14 @@ -146,8 +146,8 @@
    1.15  void
    1.16  VMS_impl__free_probe( IntervalProbe *probe )
    1.17   { if( probe->hist != NULL )   freeDblHist( probe->hist );
    1.18 -   if( probe->nameStr != NULL) VMS__free( probe->nameStr );
    1.19 -   VMS__free( probe );
    1.20 +   if( probe->nameStr != NULL) VMS_int__free( probe->nameStr );
    1.21 +   VMS_int__free( probe );
    1.22   }
    1.23  
    1.24