Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 181 → Rev 182

/SPARTAN/trunk/test/print/test.c
0,0 → 1,18
 
#include <print.h>
#include <test.h>
 
void test(void)
{
printf("char %c \n",'c');
__u64 u64const = 0x0123456789ABCDEFLL;
// printf(" p %P %p \n",0x1234567898765432);
printf(" Printf test \n");
printf(" Q %Q %q %Q \n",u64const, u64const);
printf(" L %L %l \n",0x12345678 ,0x12345678);
printf(" W %W %w \n",0x1234 ,0x1234);
printf(" B %B %B \n",0x12 ,0x12);
return;
}
 
/SPARTAN/trunk/src/Makefile.config
32,4 → 32,5
#TEST_DIR=synch/rwlock5/
#TEST_DIR=synch/semaphore1/
#TEST_DIR=synch/semaphore2/
TEST_DIR=fpu/fpu1
#TEST_DIR=fpu/fpu1
TEST_DIR=print
/SPARTAN/trunk/arch/ia32/src/mm/frame.c
45,7 → 45,7
frame_region_not_free(0xfec00000,0xffffffff);
for (i=e820counter;i>0;i--) {
// printf("E820 base: %Q size: %Q type: %L \n",e820table[i-1].base_address,e820table[i-1].size,e820table[i-1].type);
printf("E820 base: %Q size: %Q type: %L \n",e820table[i-1].base_address,e820table[i-1].size,e820table[i-1].type);
if (e820table[i-1].type!=MEMMAP_MEMORY_AVAILABLE) {
frame_region_not_free(e820table[i-1].base_address,e820table[i-1].size);
}