Changing "//" comments to "/* */" comments.

git-svn-id: https://svn.musicpd.org/mpd/trunk@6112 09075e82-0dd4-0310-85a5-a0d7c8717e4f
This commit is contained in:
J. Alexander Treuman
2007-05-15 23:23:09 +00:00
parent f63c6ca86d
commit 6f68587ad5
3 changed files with 19 additions and 15 deletions

View File

@@ -511,7 +511,7 @@ int doIOForInterfaces(void)
addInterfacesReadyToReadAndListenSocketToFdSet(&rfds, &fdmax);
addInterfacesForBufferFlushToFdSet(&wfds, &fdmax);
// Add fds for all registered IO handlers
/* Add fds for all registered IO handlers */
if( ioList ) {
struct ioOps *o = ioList;
while( o ) {
@@ -530,7 +530,7 @@ int doIOForInterfaces(void)
if (selret < 0 && errno == EINTR)
break;
// Consume fds for all registered IO handlers
/* Consume fds for all registered IO handlers */
if( ioList ) {
struct ioOps *o = ioList;
while( o ) {
@@ -832,7 +832,7 @@ static void printInterfaceOutBuffer(Interface * interface)
interface->send_buf_used = 0;
}
// From ioops.h:
/* From ioops.h: */
void registerIO( struct ioOps *ops )
{
assert( ops != NULL );