mirror of
https://github.com/xcat2/xNBA.git
synced 2025-01-18 21:43:14 +00:00
Keep running the main processing loop while waiting for input.
This commit is contained in:
parent
1a11cc5c5b
commit
b6def29f2b
@ -1,5 +1,6 @@
|
||||
#include "stddef.h"
|
||||
#include "console.h"
|
||||
#include <gpxe/process.h>
|
||||
|
||||
/** @file */
|
||||
|
||||
@ -97,6 +98,11 @@ int getchar ( void ) {
|
||||
* less CPU time in a VMware session.
|
||||
*/
|
||||
cpu_nap();
|
||||
|
||||
/* Keep processing background tasks while we wait for
|
||||
* input.
|
||||
*/
|
||||
step();
|
||||
|
||||
console = has_input();
|
||||
if ( console && console->getchar )
|
||||
|
@ -18,6 +18,7 @@
|
||||
|
||||
#include <console.h>
|
||||
#include <latch.h>
|
||||
#include <gpxe/process.h>
|
||||
#include <gpxe/keys.h>
|
||||
|
||||
/** @file
|
||||
@ -38,6 +39,7 @@ static int getchar_timeout ( unsigned long timeout ) {
|
||||
unsigned long expiry = ( currticks() + timeout );
|
||||
|
||||
while ( currticks() < expiry ) {
|
||||
step();
|
||||
if ( iskey() )
|
||||
return getchar();
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user