Added FLMAPI to thread functions.

git-svn-id: https://svn.code.sf.net/p/flaim/code/trunk@648 0109f412-320b-0410-ab79-c3e0c5ffbbe6
This commit is contained in:
dsandersoremutah
2006-07-11 16:12:38 +00:00
parent ee7d174864
commit de4599d0b7
2 changed files with 6 additions and 6 deletions

View File

@@ -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;

View File

@@ -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);