Esempio n. 1
0
/*
 * ScreenFini - done with the screen
 */
void ScreenFini( void )
{
    KeyboardFini();
    if( QNXCon != NULL ) {
        console_close( QNXCon );
    }

} /* ScreenFini */
Esempio n. 2
0
long MySpawn( const char *cmd )
{
    long rc;

    KeyboardFini();
    rc = system( cmd );
    RestoreKeyboard();
    return( rc );
}