Function to calculate the memory available for malloc

Dependents:   AvailableMemory_HelloWorld MCBBThermostat helloaabbc SP14P1_skeleton

AvailableMemory.h

Committer:
segundo
Date:
2010-11-07
Revision:
5:45826003052b
Parent:
4:be8247f802ad
Child:
6:e94f3a11bad7

File content as of revision 5:45826003052b:

/** @file AvailableMemory.h
 * Return the available memory for a malloc call
 */
#ifndef SEGUNDO_UTILITIES_AVAILABLEMEMORY_H
#define SEGUNDO_UTILITIES_AVAILABLEMEMORY_H
 
/** @fn const char *Test::member(char c,int n) 
 *  @brief A member function.
 *  @param c a character.
 *  @param n an integer.
 *  @exception std::out_of_range parameter is out of range.
 *  @return a character pointer.
 */

namespace segundo {
namespace Utilities {

/** Return the available memory for a malloc call (to the nearest 256 bytes)
 */
int AvailableMemory();

/** Return the available memory for a malloc call
 *
 * @param resolution A normalised number 0.0-1.0 to represent the full range.
 * @param maximum A normalised number 0.0-1.0 to represent the full range.
 * @param disableInterrupts A normalised number 0.0-1.0 to represent the full range.
 */
int AvailableMemory(int resolution, int maximum, bool disableInterrupts);

} // namespace Utilities
} // namespace segundo

using namespace segundo::Utilities;

#endif // SEGUNDO_UTILITIES_AVAILABLEMEMORY_H