implemented vxWorks pool status

This commit is contained in:
Jeff Hill
2000-02-10 16:13:59 +00:00
parent 0c7674036c
commit 161306a4f5

View File

@@ -1,14 +1,18 @@
#include <memLib.h>
#define epicsExportSharedSymbols
#include "osiPoolStatus.h"
/*
* osiSufficentSpaceInPool ()
*
* @@@@@ not implemented @@@@@
*
*/
epicsShareFunc int epicsShareAPI osiSufficentSpaceInPool ()
{
return 1;
if (memFindMax () > 100000) {
return 1;
}
else {
return 0;
}
}