--- Elizabeth Mattijsen <[EMAIL PROTECTED]> wrote:
> At 18:27 +0000 2/24/04, Arthur Bergman wrote:
> >Using valgrind 1.9.6 I find it impossible to use with parrot, is 
> >this a known issue, should I try and get someone to upgrade valgrind 
> >for me?
> 
> Current stable is 2.0.0, unstable is 2.1.0.  I would think an update 
> would be in order before send in bug reports to the valgrind folks... 
> ;-)
> 
> 
> Liz

Even in valgrind cvs
(http://webcvs.kde.org/cgi-bin/cvsweb.cgi/valgrind/coregrind/vg_malloc2.c)
the bug is there:

   /* Check that the requested alignment seems reasonable; that is, is
      a power of 2.  */
   switch (req_alignB) {
      case 4:
      case 8: case 16: case 32: case 64: case 128: case 256: 
      case 512: case 1024: case 2048: case 4096: case 8192: 
      case 16384: case 32768: case 65536: case 131072: 
      case 262144:
      case 1048576: 
         /* can't be bothered to calculate larger ones */
         break;
      default:
         VG_(printf)("vg_malloc_aligned(%p, %d, %d)\nbad alignment request", 
                     a, req_alignB, req_pszB );
         VG_(core_panic)("vg_malloc_aligned");
         /*NOTREACHED*/
   }

(524288 is missing)

__________________________________
Do you Yahoo!?
Yahoo! Mail SpamGuard - Read only the mail you want.
http://antispam.yahoo.com/tools

Reply via email to