it works here with Ubuntu 8.10, gcc 4.3.2.
Code: Select all
#include <stdlib.h>
#include <stdio.h>
int main( int argc, char *argv[] )
{
void *p = malloc( 0x100000001LL );
printf( "%p\n", p );
exit( 0 );
}
Code: Select all
#include <stdlib.h>
#include <stdio.h>
int main( int argc, char *argv[] )
{
void *p = malloc( 0x100000001LL );
printf( "%p\n", p );
exit( 0 );
}
Code: Select all
52: 9 0xffffffe9ffe7ce00 512
53: 9 0xfffffff5fff3e600 512
Hi Tony,Interesting. Do you do anything special with the hashtable ( depth) ?