From 84dd0c080ba5ddf67a54e9eb070fe5174ffead19 Mon Sep 17 00:00:00 2001 From: Brooks Davis Date: Tue, 14 Nov 2023 21:35:01 +0000 Subject: [PATCH] libc: libc/gen/sched_getcpu_gen.c -> libsys/ It is a trivial system call wrapper. Reviewed by: kib, emaste, imp Pull Request: https://github.com/freebsd/freebsd-src/pull/908 --- lib/libc/x86/sys/Makefile.inc | 1 + lib/{libc/gen => libsys}/sched_getcpu_gen.c | 0 2 files changed, 1 insertion(+) rename lib/{libc/gen => libsys}/sched_getcpu_gen.c (100%) diff --git a/lib/libc/x86/sys/Makefile.inc b/lib/libc/x86/sys/Makefile.inc index cbc28773ab7..05d07ee5552 100644 --- a/lib/libc/x86/sys/Makefile.inc +++ b/lib/libc/x86/sys/Makefile.inc @@ -1,4 +1,5 @@ .PATH: ${LIBC_SRCTOP}/x86/sys +.PATH: ${LIBSYS_SRCTOP}/x86 SRCS+= \ __vdso_gettc.c \ diff --git a/lib/libc/gen/sched_getcpu_gen.c b/lib/libsys/sched_getcpu_gen.c similarity index 100% rename from lib/libc/gen/sched_getcpu_gen.c rename to lib/libsys/sched_getcpu_gen.c