|
From: Nicholas N. <nj...@cs...> - 2007-02-09 23:24:45
|
On Fri, 9 Feb 2007 sv...@va... wrote: > Log: > Oops; make declarations match definitions. So much for C's type system. Well, Bool and UChar are both typedefs for 'unsigned char'. N > =================================================================== > --- trunk/coregrind/pub_core_options.h 2007-02-09 02:37:11 UTC (rev 6579) > +++ trunk/coregrind/pub_core_options.h 2007-02-09 17:45:09 UTC (rev 6580) > @@ -101,9 +101,9 @@ > extern Char* VG_(clo_suppressions)[VG_CLO_MAX_SFILES]; > > /* DEBUG: print generated code? default: 00000000 ( == NO ) */ > -extern Bool VG_(clo_trace_flags); > +extern UChar VG_(clo_trace_flags); > /* DEBUG: do bb profiling? default: 00000000 ( == NO ) */ > -extern Bool VG_(clo_profile_flags); > +extern UChar VG_(clo_profile_flags); > /* DEBUG: if tracing codegen, be quiet until after this bb ( 0 ) */ > extern Int VG_(clo_trace_notbelow); > /* DEBUG: print system calls? default: NO */ > > > ------------------------------------------------------------------------- > Using Tomcat but need to do more? Need to support web services, security? > Get stuff done quickly with pre-integrated technology to make your job easier. > Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 > _______________________________________________ > Valgrind-developers mailing list > Val...@li... > https://lists.sourceforge.net/lists/listinfo/valgrind-developers > |