extern Bool Hostinfo_GetSwapInfoInPages(unsigned int *totalSwap,
unsigned int *freeSwap);
#endif
-#ifdef VMX86_SERVER
-extern Bool Hostinfo_GetCOSMemoryInfoInPages(unsigned int *minSize,
- unsigned int *maxSize,
- unsigned int *currentSize);
-#endif
extern Bool Hostinfo_GetRatedCpuMhz(int32 cpuNumber,
uint32 *mHz);
extern char *Hostinfo_GetCpuDescription(uint32 cpuNumber);
* HostinfoGetLinuxMemoryInfoInPages --
*
* Obtain the minimum memory to be maintained, total memory available,
- * and free memory available on the host (Linux or COS) in pages.
+ * and free memory available on the host (Linux) in pages.
*
* Results:
* TRUE on success: '*minSize', '*maxSize' and '*currentSize' are set
*
* HostinfoGetSwapInfoInPages --
*
- * Obtain the total swap and free swap on the host (Linux or COS) in
+ * Obtain the total swap and free swap on the host (Linux) in
* pages.
*
* Results:
}
-#ifdef VMX86_SERVER
-/*
- *-----------------------------------------------------------------------------
- *
- * Hostinfo_GetCOSMemoryInfoInPages --
- *
- * Obtain the minimum memory to be maintained, total memory available, and
- * free memory available on the COS in pages.
- *
- * Results:
- * TRUE on success: '*minSize', '*maxSize' and '*currentSize' are set
- * FALSE on failure
- *
- * Side effects:
- * None
- *
- *-----------------------------------------------------------------------------
- */
-
-Bool
-Hostinfo_GetCOSMemoryInfoInPages(unsigned int *minSize, // OUT:
- unsigned int *maxSize, // OUT:
- unsigned int *currentSize) // OUT:
-{
- if (HostType_OSIsPureVMK()) {
- return FALSE;
- } else {
- return HostinfoGetLinuxMemoryInfoInPages(minSize, maxSize, currentSize);
- }
-}
-#endif
-
-
/*
*-----------------------------------------------------------------------------
*