Really fix linux Console.

develop
Petr Mrázek 2011-10-31 04:17:35 +01:00
parent 84e1a95205
commit 98cab0e9ad
1 changed files with 17 additions and 14 deletions

@ -143,22 +143,25 @@ namespace DFHack
private: private:
bool read_char(unsigned char & out) bool read_char(unsigned char & out)
{ {
while(1) FD_ZERO(&descriptor_set);
{ FD_SET(STDIN_FILENO, &descriptor_set);
while (select(FD_SETSIZE, &descriptor_set, NULL, NULL, NULL) < 0) FD_SET(exit_pipe[0], &descriptor_set);
{ int ret = TEMP_FAILURE_RETRY(
if(errno == EINTR) select (FD_SETSIZE,&descriptor_set, NULL, NULL, NULL)
continue; );
if(ret == -1)
return false;
if (FD_ISSET(exit_pipe[0], &descriptor_set))
return false; return false;
}
if (FD_ISSET(STDIN_FILENO, &descriptor_set)) if (FD_ISSET(STDIN_FILENO, &descriptor_set))
{ {
// read byte from stdin // read byte from stdin
read(STDIN_FILENO, &out, 1); ret = TEMP_FAILURE_RETRY(
return true; read(STDIN_FILENO, &out, 1)
} );
if (FD_ISSET(exit_pipe[0], &descriptor_set)) if(ret == -1)
return false; return false;
return true;
} }
} }
protected: protected: