File: get_page_size.c

package info (click to toggle)
fis-gtm 7.1-006-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 32,908 kB
  • sloc: ansic: 344,906; asm: 5,184; csh: 4,859; sh: 2,000; awk: 294; makefile: 73; sed: 13
file content (66 lines) | stat: -rwxr-xr-x 1,537 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
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
/****************************************************************
 *								*
 * Copyright (c) 2001-2022 Fidelity National Information	*
 * Services, Inc. and/or its subsidiaries. All rights reserved.	*
 *								*
 *	This source code contains the intellectual property	*
 *	of its copyright holder(s), and is made available	*
 *	under a license.  If you do not know the terms of	*
 *	the license, please stop and do not read further.	*
 *								*
 ****************************************************************/

#include "mdef.h"
#include "gtm_unistd.h"
#include "get_page_size.h"
#include "gtm_sizeof.h"
#include "gtm_stdio.h"
#include "gtm_string.h"
#include "gtmio.h"

GBLDEF int4	gtm_os_page_size;
GBLDEF long	gtm_os_hugepage_size = -1;
GBLREF bool	hugetlb_shm_enabled;

void get_page_size(void)
{
	gtm_os_page_size = getpagesize();

	return;
}

void get_hugepage_size(void)
{
	FILE	*info;
	int	hps, res;
	char	line[1024];
	char	*fgets_res;

	gtm_os_hugepage_size = gtm_os_page_size; /* Default to regular page size */
	if (hugetlb_shm_enabled)
	{
		Fopen(info, "/proc/meminfo", "r");
		if (NULL != info)
		{
			FEOF(info, res);
			while (!res)
			{
				res = FSCANF(info, "Hugepagesize: %d kB", &hps);
				if (EOF == res || ferror(info))
					break;
				else if (1 == res && 0 < hps)
				{
					gtm_os_hugepage_size = (long)(1024*hps);
					break;
				}
				else if (0 != res)
					break;
				FGETS(line, SIZEOF(line), info, fgets_res); /* Consume the line */
				FEOF(info, res);
			}
			FCLOSE(info, res);
		}
	}

	return;
}