From dc7a13ddccd9e43e00c3d5617298a9553a82e491 Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Thu, 27 Apr 2000 17:58:50 +0000 Subject: [PATCH] added ms keywords --- src/rsrv/caservertask.c | 4 ++-- src/rsrv/rsrv.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/rsrv/caservertask.c b/src/rsrv/caservertask.c index 663779822..07a63253c 100644 --- a/src/rsrv/caservertask.c +++ b/src/rsrv/caservertask.c @@ -228,7 +228,7 @@ struct client *create_client (SOCKET sock) return NULL; } - status = db_start_events (client->evuser, "CA event", + status = db_start_events (client->evuser, "CAS event", NULL, NULL, slightlyLowerPriority); if (status != DB_EVENT_OK) { errlogPrintf("CAS: unable to start the event facility\n"); @@ -341,7 +341,7 @@ LOCAL int req_server (void) /* * rsrv_init () */ -int rsrv_init () +epicsShareFunc int epicsShareAPI rsrv_init (void) { clientQlock = semMutexMustCreate(); diff --git a/src/rsrv/rsrv.h b/src/rsrv/rsrv.h index 82c6df19e..0f3d18e57 100644 --- a/src/rsrv/rsrv.h +++ b/src/rsrv/rsrv.h @@ -35,7 +35,7 @@ #include "shareLib.h" -epicsShareFunc int rsrv_init (void); +epicsShareFunc int epicsShareAPI rsrv_init (void); #define RSRV_OK 0 #define RSRV_ERROR (-1)