From de4599d0b7f07c764a1f0cffe833ff8999d6acba Mon Sep 17 00:00:00 2001 From: dsandersoremutah Date: Tue, 11 Jul 2006 16:12:38 +0000 Subject: [PATCH] Added FLMAPI to thread functions. git-svn-id: https://svn.code.sf.net/p/flaim/code/trunk@648 0109f412-320b-0410-ab79-c3e0c5ffbbe6 --- flaim/util/flm_lutl.cpp | 6 +++--- flaim/util/flm_lutl.h | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/flaim/util/flm_lutl.cpp b/flaim/util/flm_lutl.cpp index 2fdf006..0b37dd1 100644 --- a/flaim/util/flm_lutl.cpp +++ b/flaim/util/flm_lutl.cpp @@ -185,7 +185,7 @@ Desc: Thread that displays the current status of all indexes in a database Note: The caller must open the database and pass a handle to the thread. The handle will be closed when the thread exits. *****************************************************************************/ -RCODE flstIndexManagerThread( +RCODE FLMAPI flstIndexManagerThread( IF_Thread * pThread) { F_DynamicList * pList = f_new F_DynamicList; @@ -751,7 +751,7 @@ Exit: Desc: Thread that displays the current status of a database's cache Note: The caller must pass a valid share handle to the thread on startup. *****************************************************************************/ -RCODE flstMemoryManagerThread( +RCODE FLMAPI flstMemoryManagerThread( IF_Thread * pThread) { F_DynamicList * pList = f_new F_DynamicList; @@ -1071,7 +1071,7 @@ Transmission_Error: /**************************************************************************** Desc: Thread that displays the current status of a database's tracker thread *****************************************************************************/ -RCODE flstTrackerMonitorThread( +RCODE FLMAPI flstTrackerMonitorThread( IF_Thread * pThread) { F_DynamicList * pList = f_new F_DynamicList; diff --git a/flaim/util/flm_lutl.h b/flaim/util/flm_lutl.h index 3cc5fbf..20ef815 100644 --- a/flaim/util/flm_lutl.h +++ b/flaim/util/flm_lutl.h @@ -24,11 +24,11 @@ #include "flm_dlst.h" -RCODE flstIndexManagerThread( +RCODE FLMAPI flstIndexManagerThread( IF_Thread * pThread); -RCODE flstMemoryManagerThread( +RCODE FLMAPI flstMemoryManagerThread( IF_Thread * pThread); -RCODE flstTrackerMonitorThread( +RCODE FLMAPI flstTrackerMonitorThread( IF_Thread * pThread);