Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 15 Mar 2024 22:57:07 GMT
From:      Brooks Davis <brooks@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: b12090676c89 - main - lib{c,sys}: correctly expose sched_getcpu
Message-ID:  <202403152257.42FMv7v8006856@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by brooks:

URL: https://cgit.FreeBSD.org/src/commit/?id=b12090676c8914ae576d9b5059c0683a7c1c75c5

commit b12090676c8914ae576d9b5059c0683a7c1c75c5
Author:     Brooks Davis <brooks@FreeBSD.org>
AuthorDate: 2024-03-15 22:52:07 +0000
Commit:     Brooks Davis <brooks@FreeBSD.org>
CommitDate: 2024-03-15 22:52:07 +0000

    lib{c,sys}: correctly expose sched_getcpu
    
    When moving the implementation, I failed to move the symbol entry.
    
    Reviewed by:    kib
    Fixes:          84dd0c080ba5 libc: libc/gen/sched_getcpu_gen.c -> libsys/
    Differential Revision:  https://reviews.freebsd.org/D44112
---
 lib/libc/gen/Symbol.map   | 1 -
 lib/libsys/Symbol.sys.map | 1 +
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/libc/gen/Symbol.map b/lib/libc/gen/Symbol.map
index 43d9c36c789e..17d114c96677 100644
--- a/lib/libc/gen/Symbol.map
+++ b/lib/libc/gen/Symbol.map
@@ -447,7 +447,6 @@ FBSD_1.7 {
 	 scandirat;
 	 sched_getaffinity;
 	 sched_setaffinity;
-	 sched_getcpu;
 	 versionsort;
 	 __cpuset_alloc;
 	 __cpuset_free;
diff --git a/lib/libsys/Symbol.sys.map b/lib/libsys/Symbol.sys.map
index 8d68d23686a8..822c007d32f1 100644
--- a/lib/libsys/Symbol.sys.map
+++ b/lib/libsys/Symbol.sys.map
@@ -371,6 +371,7 @@ FBSD_1.7 {
 	fspacectl;
 	kqueuex;
 	membarrier;
+	sched_getcpu;
 	swapoff;
 	timerfd_create;
 	timerfd_gettime;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202403152257.42FMv7v8006856>