From 17ed296e2dd24cab8c7463b6937f75acc0d96f38 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ciro=20Santilli=20=E5=85=AD=E5=9B=9B=E4=BA=8B=E4=BB=B6=20?= =?UTF-8?q?=E6=B3=95=E8=BD=AE=E5=8A=9F?= Date: Wed, 3 Jun 2020 06:00:05 +0000 Subject: [PATCH] boog -> boot --- userland/linux/sysconf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/userland/linux/sysconf.c b/userland/linux/sysconf.c index ac29cd0..32aa70c 100644 --- a/userland/linux/sysconf.c +++ b/userland/linux/sysconf.c @@ -9,7 +9,7 @@ int main(void) { /* Number of processors, not considering affinity: * http://stackoverflow.com/questions/2693948/how-do-i-retrieve-the-number-of-processors-on-c-linux */ printf("_SC_NPROCESSORS_ONLN = %ld\n", sysconf(_SC_NPROCESSORS_ONLN)); - /* CPUs configured by OS during boog. Some may have gone offline, so could be larger than _SC_NPROCESSORS_ONLN.a */ + /* CPUs configured by OS during boot. Some may have gone offline, so could be larger than _SC_NPROCESSORS_ONLN.a */ printf("_SC_NPROCESSORS_CONF = %ld\n", sysconf(_SC_NPROCESSORS_CONF)); return EXIT_SUCCESS; }