diff options
| author | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2021-09-06 12:22:54 -0300 |
|---|---|---|
| committer | Florian Weimer <fweimer@redhat.com> | 2021-10-01 18:19:09 +0200 |
| commit | e870aac8974cda746157a5a3c9f452ccd70da29b (patch) | |
| tree | f7545df9c54b9c05c31dd3c2c09ee5ab614f57af /include/sys | |
| parent | 40bade26d5bcbda3d21fb598c5063d9df62de966 (diff) | |
| download | glibc-e870aac8974cda746157a5a3c9f452ccd70da29b.tar.xz glibc-e870aac8974cda746157a5a3c9f452ccd70da29b.zip | |
misc: Add __get_nprocs_sched
This is an internal function meant to return the number of avaliable
processor where the process can scheduled, different than the
__get_nprocs which returns a the system available online CPU.
The Linux implementation currently only calls __get_nprocs(), which
in tuns calls sched_getaffinity.
Reviewed-by: Florian Weimer <fweimer@redhat.com>
(cherry picked from commit 11a02b035b464ab6813676adfd19c4a59c36d907)
Diffstat (limited to 'include/sys')
| -rw-r--r-- | include/sys/sysinfo.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/include/sys/sysinfo.h b/include/sys/sysinfo.h index 7388356a19..c490561581 100644 --- a/include/sys/sysinfo.h +++ b/include/sys/sysinfo.h @@ -9,10 +9,15 @@ extern int __get_nprocs_conf (void); libc_hidden_proto (__get_nprocs_conf) -/* Return number of available processors. */ +/* Return number of available processors (not all of them will be + available to the caller process). */ extern int __get_nprocs (void); libc_hidden_proto (__get_nprocs) +/* Return the number of available processors which the process can + be scheduled. */ +extern int __get_nprocs_sched (void) attribute_hidden; + /* Return number of physical pages of memory in the system. */ extern long int __get_phys_pages (void); libc_hidden_proto (__get_phys_pages) |
