2 Copyright © 1995-2012, The AROS Development Team. All rights reserved.
8 #include <proto/exec.h>
10 #include <aros/debug.h>
14 while(!CheckSignal(SIGBREAKF_CTRL_C
))
17 for(size
= 5000; size
< 6000; size
++)
19 UBYTE
*mem
= AllocMem(size
,MEMF_ANY
);
20 UBYTE
*mem2
= AllocMem(size
,MEMF_ANY
);
25 for(i
= 0; i
< 10; i
++)
28 CopyMem(mem
, mem2
, size
);
31 if (memcmp(mem
, mem2
, size
))
33 kprintf("=== memcmp failure!!\n");
34 //asm volatile("int3");
40 kprintf("== out of mem\n");