remove C++ style comments

git-svn-id: https://svn.musicpd.org/mpd/trunk@3689 09075e82-0dd4-0310-85a5-a0d7c8717e4f
This commit is contained in:
Eric Wong
2005-11-19 10:52:47 +00:00
parent e8a54efe41
commit f8597ccf25
9 changed files with 41 additions and 36 deletions

View File

@@ -97,7 +97,8 @@ void player_sigChldHandler(int pid, int status) {
int playerInit() {
kill(masterPid, SIGUSR2);
while (getPlayerPid()==0) my_usleep(10000); //we need to wait for the signal to take effect
/* we need to wait for the signal to take effect: */
while (getPlayerPid()==0) my_usleep(10000);
return 0;
}
@@ -108,19 +109,21 @@ int playerInitReal() {
if(player_pid==0) {
PlayerControl * pc = &(getPlayerData()->playerControl);
//clearUpdatePid();
/* clearUpdatePid(); */
unblockSignals();
setSigHandlersForDecoder();
//closeAllListenSockets();
//freeAllInterfaces();
//closeMp3Directory();
//finishPlaylist();
//finishPermissions();
//finishCommands();
//finishVolume();
/*
closeAllListenSockets();
freeAllInterfaces();
closeMp3Directory();
finishPlaylist();
finishPermissions();
finishCommands();
finishVolume();
*/
while(1) {
if(pc->play) decode();