Ignore:
Timestamp:
Jul 4, 2012, 2:51:18 PM (12 years ago)
Author:
alain
Message:

Introducing various modifications in kernel initialisation

File:
1 edited

Legend:

Unmodified
Added
Removed
  • soft/giet_vm/apps/hello/main.c

    r160 r165  
    55        unsigned int    i;
    66        char                byte;
    7     unsigned int        proc = procid();
     7    unsigned int        proc = giet_procid();
    88
    99        for( i=0 ; i<1000 ; i++ )
    1010        {
    11                 if( tty_printf(" hello from processor %d\n", proc) )
     11                if( giet_tty_printf(" hello from processor %d\n", proc) )
    1212                {
    13                         tty_puts("echec tty_printf\n");
    14                         exit();
     13                        giet_tty_puts("echec tty_printf\n");
     14                        giet_exit();
    1515                }
    16         if( tty_getc_irq((void*)&byte) )
     16        if( giet_tty_getc((void*)&byte) )
    1717        {
    18                         tty_puts("echec tty_getc_irq\n");
    19                         exit();
     18                        giet_tty_puts("echec tty_getc_irq\n");
     19                        giet_exit();
    2020                }
    21                 if(byte == 'q') exit();
     21        if ( byte == 'q' ) giet_exit();
    2222        }
    23         exit();
     23    giet_exit();
    2424
    2525} // end main
Note: See TracChangeset for help on using the changeset viewer.