File: memory.h

package info (click to toggle)
nws 2.11-3
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 2,700 kB
  • ctags: 2,820
  • sloc: ansic: 28,849; sh: 3,289; java: 1,205; makefile: 697; perl: 12
file content (39 lines) | stat: -rwxr-xr-x 526 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/* $Id: memory.h,v 1.6 2003/10/23 00:53:49 graziano Exp $ */

#ifndef MEMORY_H
#define MEMORY_H

#include "skills.h"

int
MemoryMonitorAvailable(const char *options);

void
MemoryUseSkill(	const char *options, 
		int *length, 
		SkillResult **results);



/* from here down, internal stuff */
int
ActiveMemoryGetFree(double *newFraction);


int
ActiveMemoryMonitorAvailable(void);


int
ActiveMemoryMonitorCalibration(void);


int
PassiveMemoryGetFree(double *newFraction);


int
PassiveMemoryMonitorAvailable(void);


#endif