Ignore:
Timestamp:
Jul 27, 2015, 10:03:19 PM (9 years ago)
Author:
alain
Message:

Introduce the "shared" argument in the giet_tty_alloc() system call.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • soft/giet_vm/giet_libs/stdio.c

    r666 r671  
    172172//////////////////////////////////////////////////////////////////////////////
    173173
    174 /////////////////////
    175 void giet_tty_alloc()
     174//////////////////////////////////////////
     175void giet_tty_alloc( unsigned int shared )
    176176{
    177177    if ( sys_call( SYSCALL_TTY_ALLOC,
    178                    0, 0, 0, 0 ) )  giet_exit("error in giet_tty_alloc()");
     178                   shared,
     179                   0, 0, 0 ) )  giet_exit("error in giet_tty_alloc()");
    179180}
    180181
Note: See TracChangeset for help on using the changeset viewer.