Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 1048 → Rev 1049

/uspace/trunk/init/init.c
33,7 → 33,7
#include <stdlib.h>
#include <ns.h>
 
/*
 
static void test_printf(void)
{
printf("Simple text.\n");
40,12 → 40,14
printf("Now insert '%s' string.\n","this");
printf("We are brave enought to print numbers like %%d = '%d'\n", 0x123456);
printf("And now... '%b' byte! '%w' word! '%W' Word! \n", 0x12, 0x1234, 0x1234);
printf(" '%Q' Q! Another '%q' q! \n", 0x1234567887654321ll, 0x1234567887654321ll);
printf(" '%P' with 64bit value and '%p' with 32 bit value. \n", 0x1234567887654321ll, 0x12345678 );
printf("'%Q' Q! Another '%q' q! \n", 0x1234567887654321ll, 0x1234567887654321ll);
printf("'%Q' with 64bit value and '%p' with 32 bit value. \n", 0x1234567887654321ll, 0x12345678 );
printf("'%Q' 64bit, '%p' 32bit, '%b' 8bit, '%w' 16bit, '%Q' 64bit and '%s' string.\n", 0x1234567887654321ll, 0x12345678, 0x12, 0x1234, 0x1234567887654321ull, "Lovely string" );
printf("Thats all, folks!\n");
}
*/
 
 
extern char _heap;
static void test_mremap(void)
{
161,6 → 163,7
{
version_print();
 
/* test_printf(); */
// test_ping();
// test_async_ipc();
test_advanced_ipc();