cwMidiAlsa.cpp : Added TODO comments.

This commit is contained in:
kevin 2022-11-11 13:15:35 -05:00
parent c94556d4a1
commit c1a0e7708b

View File

@ -134,11 +134,17 @@ namespace cw
// if no input // if no input
if( rc == -EAGAIN ) if( rc == -EAGAIN )
{
// TODO: report or at least count error
break; break;
}
// if input buffer overrun // if input buffer overrun
if( rc == -ENOSPC ) if( rc == -ENOSPC )
{
// TODO: report or at least count error
break; break;
}
// get the device this event arrived from // get the device this event arrived from
if( p->prvRcvDev==NULL || p->prvRcvDev->clientId != ev->source.client ) if( p->prvRcvDev==NULL || p->prvRcvDev->clientId != ev->source.client )