(CFLAGS-tst-align.c): Add -mpreferred-stack-boundary=4.
[glibc.git] / include / sys / sysinfo.h
blobe126bcb0e964c408d477f2b9afaae34b355fac22
1 #ifndef _SYS_SYSINFO_H
2 #include_next <sys/sysinfo.h>
4 /* Now we define the internal interface. */
6 /* Return number of configured processors. */
7 extern int __get_nprocs_conf (void);
9 /* Return number of available processors. */
10 extern int __get_nprocs (void);
12 /* Return number of physical pages of memory in the system. */
13 extern long int __get_phys_pages (void);
15 /* Return number of available physical pages of memory in the system. */
16 extern long int __get_avphys_pages (void);
18 #endif /* sys/sysinfo.h */