* s/O_NDELAY/O_NONBLOCK/

This commit is contained in:
Tim Angus 2007-11-19 19:59:37 +00:00
parent b62950ca6e
commit f2f8e73d58
1 changed files with 2 additions and 2 deletions

View File

@ -168,7 +168,7 @@ void CON_Shutdown( void )
}
// Restore blocking to stdin reads
fcntl( 0, F_SETFL, fcntl( 0, F_GETFL, 0 ) & ~O_NDELAY );
fcntl( 0, F_SETFL, fcntl( 0, F_GETFL, 0 ) & ~O_NONBLOCK );
}
/*
@ -256,7 +256,7 @@ void CON_Init( void )
signal(SIGTTOU, SIG_IGN);
// Make stdin reads non-blocking
fcntl( 0, F_SETFL, fcntl( 0, F_GETFL, 0 ) | O_NDELAY );
fcntl( 0, F_SETFL, fcntl( 0, F_GETFL, 0 ) | O_NONBLOCK );
if (isatty(STDIN_FILENO)!=1)
{