bsdSocketResource=>osiSockResource; extra arg for semXXXShow

This commit is contained in:
Marty Kraimer
2000-02-04 15:52:03 +00:00
parent 7a4da80075
commit 019723bcb1
5 changed files with 10 additions and 10 deletions
+1 -1
View File
@@ -69,7 +69,7 @@ static char *sccsId = "%W% %G%";
#include "ellLib.h"
#include "freeList.h"
#include "caerr.h"
#include "bsdSocketResource.h"
#include "osiSockResource.h"
#include "server.h"
+1 -1
View File
@@ -61,7 +61,7 @@ static char *sccsId = "@(#) $Id$";
#include "taskwd.h"
#include "db_access.h"
#include "server.h"
#include "bsdSocketResource.h"
#include "osiSockResource.h"
/*
+1 -1
View File
@@ -50,7 +50,7 @@ static char *sccsId = "@(#) $Id$";
#include "ellLib.h"
#include "errlog.h"
#include "server.h"
#include "bsdSocketResource.h"
#include "osiSockResource.h"
/*
+6 -6
View File
@@ -66,7 +66,7 @@ static char *sccsId = "@(#) $Id$";
#include "envDefs.h"
#include "freeList.h"
#include "errlog.h"
#include "bsdSocketResource.h"
#include "osiSockResource.h"
#include "server.h"
@@ -478,14 +478,14 @@ LOCAL void log_one_client(struct client *client, unsigned level)
if (level >= 3u) {
printf( "\tSend Lock\n");
semMutexShow(client->lock);
semMutexShow(client->lock,1);
printf( "\tPut Notify Lock\n");
semMutexShow (client->putNotifyLock);
semMutexShow (client->putNotifyLock,1);
printf( "\tAddress Queue Lock\n");
semMutexShow (client->addrqLock);
semMutexShow (client->addrqLock,1);
printf( "\tEvent Queue Lock\n");
semMutexShow (client->eventqLock);
semMutexShow (client->eventqLock,1);
printf( "\tBlock Semaphore\n");
semBinaryShow (client->blockSem);
semBinaryShow (client->blockSem,1);
}
}
+1 -1
View File
@@ -77,7 +77,7 @@ static char *sccsId = "@(#) $Id$";
#include "envDefs.h"
#include "freeList.h"
#include "server.h"
#include "bsdSocketResource.h"
#include "osiSockResource.h"
LOCAL void clean_addrq();