export casr; remove client_stat

This commit is contained in:
Marty Kraimer
2000-05-02 13:47:03 +00:00
parent 4b5ca321fd
commit a71778bfcc
3 changed files with 2 additions and 13 deletions

View File

@@ -366,15 +366,6 @@ epicsShareFunc int epicsShareAPI rsrv_init (void)
return RSRV_OK;
}
/*
* client_stat()
*/
int client_stat(unsigned level)
{
printf ("\"client_stat\" has been replaced by \"casr\"\n");
return ellCount(&clientQ);
}
/*
* log_one_client ()
*/
@@ -480,7 +471,7 @@ LOCAL void log_one_client (struct client *client, unsigned level)
/*
* casr()
*/
void casr (unsigned level)
void casr epicsShareAPI (unsigned level)
{
size_t bytes_reserved;
struct client *client;

View File

@@ -36,6 +36,7 @@
#include "shareLib.h"
epicsShareFunc int epicsShareAPI rsrv_init (void);
epicsShareFunc void epicsShareAPI casr (unsigned level);
#define RSRV_OK 0
#define RSRV_ERROR (-1)

View File

@@ -215,9 +215,6 @@ GLBLTYPE int casSufficentSpaceInPool;
#define LOCK_CLIENTQ semMutexMustTake (clientQlock);
#define UNLOCK_CLIENTQ semMutexGive (clientQlock);
int client_stat (unsigned level);
void casr (unsigned level);
void camsgtask (struct client *client);
void cas_send_msg (struct client *pclient, int lock_needed);
caHdr *cas_alloc_msg (struct client *pclient, unsigned extsize);