search for: purify

Displaying 20 results from an estimated 25 matches for "purify".

2005 Nov 16
1
Generate 32bit programs on x86_64 architecture?
I'm trying to run purify on CentOS on an Intel Pentium 4/630 processor. Purify does not like the 64bit code. Is there some way to compile and run programs so that they are only using the 32 bit model? I tried gcc -m32 but then the system libraries come up missing. Purify engine: Error: Couldn't open the file crt1.o...
2006 Oct 24
15
How to emit associative array after ^C
Boy am I a dummy. I want to simply dump out unfreed allocations when I terminate the script. What''s the secret sauce? #!/usr/sbin/dtrace -s pid$1::MyAlloc:return { bufs[arg1] = walltimestamp; } pid$1::MyFree:entry /bufs[arg0]/ { bufs[arg0] = 0; } This message posted from opensolaris.org
2009 Jan 15
2
[patch] libc Berkeley DB information leak
...bsd.org/cgi/query-pr.cgi?pr=123529) which contains a real information leak case. The PR is assigned to secteam and I have also personally reported it to secteam but I haven't heard a word from secteam members. A code to initialize malloc'd memory exists but the feature must be enabled with PURIFY macro. With following patch applied the test program doesn't output 0xa5 bytes to the database file: %%% Index: lib/libc/db/hash/hash_buf.c =================================================================== --- lib/libc/db/hash/hash_buf.c (revision 187214) +++ lib/libc/db/hash/hash_buf.c (wor...
2003 Dec 05
0
[LLVMdev] Re: Makefile.config&setenv
...s of the test/Programs/* programs. This is used as the bytecode source > # when USE_PRECOMPILED_BYTECODE is specified or when source code is not > # available for the program (such as SPEC). > # > BYTECODE_REPOSITORY := /home/vadve/lattner/LLVMPrograms > > # Path to location for purify, this is only needed if you build with > # ENABLE_PURIFY=1 > # > PURIFY = > > # > # SPEC benchmarks: > # Set the USE_SPEC variable to enable the use of the SPEC benchmarks. > # You must provide the SPEC benchmarks on your own. > # > > > # > # Path to the...
2002 Oct 13
0
[LLVMdev] Debugging memory errors on linux...
This email isn't really LLVM specific, but is definately useful for LLVM people so.... I've downloaded and installed "valgrind" (http://developer.kde.org/~sewardj/), an open source "purify" replacement. It is actually quite a bit nicer than purify is, as it doesn't require you to recompile or modify your executables _at all_ to run them (it also seems quite fast). Anyway, if you suspect you have memory error issues, I'd recommend trying it out. It only works on x86 pl...
2017 Mar 21
4
Clang -O0 performs optimizations that undermine dynamic bug-finding tools
Hi everyone, I found that Clang -O0 performs optimizations that undermine dynamic bug-finding tools. First, most bug finding tools such as ASan, Valgrind, Dr. Memory, Mudflap, Purify and Safe Sulong (on which I am working) rely on detecting errors during the execution of the program. They either insert additional checks during compile-time or during run-time which are executed when the program is running. To find errors with these tools, it is necessary that these errors stay i...
2015 Mar 16
0
nutdrv_atcl_usb
[attachments were > 100kB; trimmed] Begin forwarded message: > From: "Jakub Scepka (private)" <jakub.scepka at gmail.com> > Subject: Re: [Nut-upsuser] nutdrv_atcl_usb > Date: March 13, 2015 at 4:30:08 PM EDT > To: "hyouko at gmail.com" <hyouko at gmail.com> > Cc: nut-upsuser <nut-upsuser at lists.alioth.debian.org> > > > Hello Im
2000 Jun 12
0
smbstatus getting a SIGBUS error
...r example file_scanner_p->num_share_mode_entries comes back as 1651272501, which, if I understand the code, is a bit large. It looks as if the code is accessing memory it's not supposed to be accessing. Well, it looks like a memory error. I'd been meaning to try out the new version of Purify anyway, so I guess I'll go ahead and download it. Feel free to jump in with comments or questions Best regards Arnold Here's the offending routine: /******************************************************************* call the specified function on each entry under management by the shar...
2000 Jun 16
0
Memory usage in reload_services()
...6144 7240 600 6792 7976 700 7328 8848 800 7488 9584 900 7920 10456 1000 7824 11192 We examined smbd process with purify tool but found *NO* memory leaks which would explain the memory growth. SIGHUP achieves that samba checks if configuration file(s) has changed and therefore services must be reloaded (function process.c:check_reload()). Because it is touched right before, samba always decides to reload services b...
2006 Dec 07
0
Rmpi help
...C++ compiler: g++ Fortran compiler: g77 Fortran symbols: double_underscore C profiling: yes C++ profiling: yes Fortran profiling: yes C++ exceptions: no Thread support: yes ROMIO support: yes IMPI support: no Debug support: no Purify clean: no SSI boot: globus (API v1.1, Module v0.6) SSI boot: rsh (API v1.1, Module v1.1) SSI boot: slurm (API v1.1, Module v1.0) SSI coll: lam_basic (API v1.1, Module v7.1) SSI coll: shmem (API v1.1, Module v1.0) SSI coll: smp...
2010 Oct 13
3
"Memory not mapped" when using .C, problem in Mac but not in Linux
Hello, I am aware this may be an obscure problem difficult to advice about, but just in case... I am calling a C function from R on an iMac (almost shining: bought by my institution this year) and gives a "memory not mapped" error. Nevertheless, exactly the same code runs without problem in a powerful computer using SuSE Linux, but also on my laptop of 2007, 32 bits, 2 GB RAM, running
2012 May 27
1
Thread Problem.
I have been working on a game for a while now and noticed that using your library to stream music created a graphical problem while the screen would scroll. (certain tiles would flicker to be more specific). I found that if I don't play music this problem doesn't occur. Another developer suggested that if I can lower the priority (thread priority) of the music this could fix the problem.
1999 Jul 21
2
Samba 2.0.5 released.
...WinNT semantics for Win9x clients. 28). Potential crash bug fixed in wildcard matching code. This bug could also cause smbd to sometimes not see exact file matches. 29). Read/write for sockets changed to use revc/send to allow optimisations later. 30). Oplocks added to client library. 31). Several purify fixes in IPC code. 32). nmbd crash bug in processing strange NetBIOS names fixed. 33). nmbd loop bug in processing strange NetBIOS names fixed. 34). Paranoia fixes to processing of incoming WinPopup messages in smbd. 35). Share mode code now auto initialised. 36). Detect dead processes in IPC lock...
2017 Aug 20
3
RFC: Resolving TBAA issues
On 08/20/2017 11:22 AM, Daniel Berlin via llvm-dev wrote: > Sorry, hit send early. > > > On Sun, Aug 20, 2017 at 9:16 AM, Daniel Berlin <dberlin at dberlin.org > <mailto:dberlin at dberlin.org>> wrote: > > > > On Sun, Aug 20, 2017 at 8:54 AM, Ivan A. Kosarev via llvm-dev > <llvm-dev at lists.llvm.org <mailto:llvm-dev at
1999 Nov 11
0
Samba 2.0.6 released.
...WinNT semantics for Win9x clients. 28). Potential crash bug fixed in wildcard matching code. This bug could also cause smbd to sometimes not see exact file matches. 29). Read/write for sockets changed to use revc/send to allow optimisations later. 30). Oplocks added to client library. 31). Several purify fixes in IPC code. 32). nmbd crash bug in processing strange NetBIOS names fixed. 33). nmbd loop bug in processing strange NetBIOS names fixed. 34). Paranoia fixes to processing of incoming WinPopup messages in smbd. 35). Share mode code now auto initialised. 36). Detect dead processes in IPC lock...
2002 Jun 13
3
[R] help debugging segfaults
...hat R's memory system (or malloc's) has been > corrupted by array overruns. > > Sometimes gctorture(TRUE) helps. However in your case it's > more likely > those S_alloc calls, so try (temporarily) replacing them by > calls to Calloc > and then use something like Purify or `Electric Fence'. to test for > overruns. > > On Wed, 12 Jun 2002, Liaw, Andy wrote: > > > (Sorry for the cross-post--- I wasn't sure which list is more > > appropriate...) > > Only a few people read R-devel and not R-help. > > > Hi everyone, &g...
2007 Mar 28
3
Dueling master browsers...
I'm having trouble with my Samba 3 PDC and several XP Pro workstations stealing the master browser status on the network. These users won't log in to the domain. Logs and purified smb.conf attached. Mar 27 09:09:48 macallan nmbd[3481]: Mar 27 09:09:48 macallan nmbd[3481]: ***** Mar 27 09:10:05 macallan nmbd[3481]: [2007/03/27 09:10:05, 0]
2006 Sep 24
1
Retaining undelete data on ext3
Having just spent a day trying to recover a deleted ext3 file for a friend, I'm wondering about this way of maintining undelete information in ext3, like is done for ext2: The last step in the deletion process would be to put back the (previously zeroed) block pointers. Since it gets logged to the journal, I _think_ that this should be safe. The worst that would happen is that, if the plug
2002 Jun 12
3
help debugging segfaults
(Sorry for the cross-post--- I wasn't sure which list is more appropriate...) Hi everyone, I've run into segfaults when using my randomForest package on large dataset (e.g., 100 x 15200) and large number of trees (e.g., ntree=7000 and mtry=3000). I'm wondering if anyone can give me some hints on where to look for the problem. The randomForest package mainly consists of two things:
2002 Jun 12
3
help debugging segfaults
(Sorry for the cross-post--- I wasn't sure which list is more appropriate...) Hi everyone, I've run into segfaults when using my randomForest package on large dataset (e.g., 100 x 15200) and large number of trees (e.g., ntree=7000 and mtry=3000). I'm wondering if anyone can give me some hints on where to look for the problem. The randomForest package mainly consists of two things: