I routinely use Valgrind to debug and test my own program that embeds V8, and I have never seen this problem with respect to V8.
Are you sure the problem isn't related to libclnt being compiled to use AVX or another new instruction set extension that valgrind doesn't fully support? The report would still show V8 functions, since they are a part of the call stack if the call originated from a V8 call, such as a function exposed to script that calls a libclnt function. On Tuesday, October 15, 2013 5:24:34 AM UTC-8, dan wu wrote: > > My program invokes the oracle library(libclnt.so) and the v8 > library(libv8).When I use Valgrind to detected memory leaks,I get error > messages as follow: > > ORA-24550: signal received: [si_signo=4] [si_errno=0] [si_code=1] > [si_int=8064] [si_ptr=0x1f80] [si_addr=0x3df606b30492] > > kpedbg_dmp_stack()+360<-kpeDbgCrash()+192<-kpeDbgSignalHandler()+119<-skgesig_sigactionHandler()+218<-__sighandler()<-00003DF606B30492<-00003DF606B17E97<-_ZN2v88internal6InvokeEbNS0_6HandleINS0_10JSFunctionEEENS1_INS0_6ObjectEEEiPS5_Pb()+515<-_ZN2v88internal9Execution4CallENS0_6HandleINS0_6ObjectEEES4_iPS4_Pbb()+480<-_ZN2v86Script3RunEv()+636 > > It looks like from the v8's funcion to the oracle's function. Any one > can help me? > -- -- v8-users mailing list [email protected] http://groups.google.com/group/v8-users --- You received this message because you are subscribed to the Google Groups "v8-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
