Re: [Valgrind-developers] [Valgrind-users] helgrind false alters in ACE Tasks ( Linux)

2007-12-17 Thread Konstantin Serebryany
>> I guess I am not following this ( as I am very new to helgrind and valgrind ) . I am using ACE based Queues and Tasks ( http://www.cs.wustl.edu/~schmidt/ACE-overview.html ) >> and ACE already has Queue protection locks for multithread impleme

[Valgrind-developers] 2007-12-18 03:15:03 GMT nightly build (alvis, i686, Red Hat 7.3)

2007-12-17 Thread Tom Hughes
Nightly build on alvis ( i686, Red Hat 7.3 ) started at 2007-12-18 03:15:03 GMT Results differ from 24 hours ago Checking out valgrind source tree ... done Configuring valgrind ... done Building valgrind ... done Running regression tests ... f

[Valgrind-developers] 2007-12-18 03:05:09 GMT nightly build (lloyd, x86_64, Fedora 7)

2007-12-17 Thread Tom Hughes
Nightly build on lloyd ( x86_64, Fedora 7 ) started at 2007-12-18 03:05:09 GMT Results unchanged from 24 hours ago Checking out valgrind source tree ... done Configuring valgrind ... done Building valgrind ... done Running regression tests ...

[Valgrind-developers] 2007-12-18 03:10:05 GMT nightly build (dellow, x86_64, Fedora 8)

2007-12-17 Thread Tom Hughes
Nightly build on dellow ( x86_64, Fedora 8 ) started at 2007-12-18 03:10:05 GMT Results differ from 24 hours ago Checking out valgrind source tree ... done Configuring valgrind ... done Building valgrind ... done Running regression tests ... f

[Valgrind-developers] 2007-12-18 03:00:03 GMT nightly build (gill, x86_64, Fedora Core 2)

2007-12-17 Thread Tom Hughes
Nightly build on gill ( x86_64, Fedora Core 2 ) started at 2007-12-18 03:00:03 GMT Results differ from 24 hours ago Checking out valgrind source tree ... done Configuring valgrind ... done Building valgrind ... done Running regression tests .

[Valgrind-developers] valgrind: r7302 - in trunk: coregrind coregrind/m_initimg coregrind/m_scheduler docs/xml memcheck/tests none/tests

2007-12-17 Thread svn
Author: sewardj Date: 2007-12-18 01:49:23 + (Tue, 18 Dec 2007) New Revision: 7302 Log: Improve handling of programs which require very large main thread stacks. Instead of hardwiring the main thread stack to a max of 16MB and segfaulting the app beyond that point, allow the user to specify th

[Valgrind-developers] 2007-12-18 02:00:01 CET nightly build (g5, SuSE 10.1, ppc970)

2007-12-17 Thread jseward
Nightly build on g5 ( SuSE 10.1, ppc970 ) started at 2007-12-18 02:00:01 CET Results unchanged from 24 hours ago Checking out valgrind source tree ... done Configuring valgrind ... done Building valgrind ... done Running regression tests ... f

Re: [Valgrind-developers] [Valgrind-users] helgrind false alters in ACE Tasks ( Linux)

2007-12-17 Thread Konstantin Serebryany
I have the same issue with our own message queues. Helgrind does not support them out of the box but can be easily enhanced. I did it with the help of source code changes: void Put(T elem) { // put() method of your queue sem_t *uniq_sem = new sem_t; sem_init(uniq_sem); sem_post(uniq_sem);

Re: [Valgrind-developers] support memcheck of UserModeLinux

2007-12-17 Thread John Reiser
Bart Van Assche wrote: >>The attached patch to valgrind-3.3.0 is what I am using to run >>UML (UserModeLinux) for x86 under memcheck on x86, thus checking >>the memory accesses of a linux kernel. > This sounds great. Can you share your experience with running UML under > memcheck ? Details will a

Re: [Valgrind-developers] support memcheck of UserModeLinux

2007-12-17 Thread Bart Van Assche
On 12/15/07, John Reiser <[EMAIL PROTECTED]> wrote: > > The attached patch to valgrind-3.3.0 is what I am using to run > UML (UserModeLinux) for x86 under memcheck on x86, thus checking > the memory accesses of a linux kernel. This sounds great. Can you share your experience with running UML unde