if (selectnum == ERROR)
{
#ifdef DEBUG_PRINT
printErr("ERROR:An select error has occurred in received data from COM2!\n");
#endif
return ERROR;
}
else if(selectnum == 0)
{
#ifdef DEBUG_PRINT
printErr("ERROR:An timeout error has occurred in received data from COM2!\n");
#endif
return ERROR;
}
liv_width = 0;
FD_ZERO(<v_saveFds); /* initialize the set - all bits off */
/*
* The liv_width argument is the maximum file descriptor to
* be tested, plus one. The descriptors 0,1, up through
* and including liv_width -1 are tested.
*/
FD_SET(UartInfo.fd, <v_saveFds); /* Turn on bit for panel uart fd */
liv_width = UartInfo.fd;
liv_width++;
FOREVER
{
ltv_readFds = ltv_saveFds;
/*
* Pend on multiple file descriptors indefinitely using select
* until one or more file descriptors become ready for reading.
*/
if ((liv_numFds = select(liv_width, <v_readFds, NULL, NULL, NULL)) == ERROR)
{
logMsg("ERROR in select.\n");
continue;
}
if (FD_ISSET(UartInfo.fd, <v_readFds))
{
// read data from uart
}
}