File: linuxinfo_alpha.c

package info (click to toggle)
linuxinfo 1.1.2-1
  • links: PTS
  • area: main
  • in suites: potato
  • size: 316 kB
  • ctags: 120
  • sloc: ansic: 527; sh: 327; makefile: 60
file content (71 lines) | stat: -rw-r--r-- 1,627 bytes parent folder | download
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71

/*----------------------------------------------------------------------------*

	LinuxInfo_alpha.c
		by Alex Buell
			September 1998

 ----------------------------------------------------------------------------- 

	Handles the Alpha architecture	

 ----------------------------------------------------------------------------- 

	HISTORY

	1.01 - Initial development

 -----------------------------------------------------------------------------*/

#include "linuxinfo.h"

#ifdef system_alpha

void GetHardwareInfo(struct hw_stat *hw)
{
	int processors = 0; 
	float bogomips = 0.0;
	float tempbogo;
	LONGLONG memory = 0;

	char temp_string[BUFSIZ], temp_string2[BUFSIZ];
	char chip[BUFSIZ], vendor[BUFSIZ], model[BUFSIZ] = "Unknown";

	FILE *procfile;
	struct stat st_buf;

	if ((procfile = fopen(CPUINFO_FILE, "r")) != NULL) 
	{
		while (fscanf(procfile, "%s", (char *)&temp_string2) != EOF) 
		{
			if (processors == 0) 
			{
				if (!(strcmp(temp_string2, "model"))) 
				{
					fscanf(procfile, "%s", (char *)&temp_string);
					GetStringFromFile(procfile, (char *)&model);
					sscanf(model, "%s", (char *)&temp_string);
				}
			}
			if (!(strcmp(temp_string2, "BogoMIPS")))
			{
				processors++;
				fscanf(procfile, "%s%f", (char *)&hw->hw_bogomips, &tempbogo);
				bogomips += tempbogo;
			}
		}
		fclose(procfile);
	}

	stat(MEMORY_FILE, &st_buf);
	memory = st_buf.st_size;
	memory /= 1024; memory /= 1024;
	sprintf(hw->hw_memory, "%ld", (long int)memory);

	hw->hw_processors = processors;

	sprintf(hw->hw_cpuinfo, "Alpha %s", model);
	sprintf(hw->hw_bogomips, "%0.2f", bogomips);
}

#endif /* system_alpha */