From a36eac86acb61d7f276348e4393a7812bcf820d3 Mon Sep 17 00:00:00 2001 From: beveloper Date: Wed, 20 Aug 2003 02:16:43 +0000 Subject: [PATCH] Removed system_time from atomic.S file and added it in a separate one. The atomic and system_time function are now included in the kernel_os_arch_x86.o file git-svn-id: file:///srv/svn/repos/haiku/trunk/current@4333 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/kernel/libroot/os/arch/x86/Jamfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/kernel/libroot/os/arch/x86/Jamfile b/src/kernel/libroot/os/arch/x86/Jamfile index 4933df4036..50be02dfe2 100644 --- a/src/kernel/libroot/os/arch/x86/Jamfile +++ b/src/kernel/libroot/os/arch/x86/Jamfile @@ -4,6 +4,7 @@ KernelMergeObject os_arch_$(OBOS_ARCH).o : <$(SOURCE_GRIST)>atomic.S <$(SOURCE_GRIST)>cpuid.S <$(SOURCE_GRIST)>systeminfo.c + <$(SOURCE_GRIST)>system_time.S <$(SOURCE_GRIST)>thread.c <$(SOURCE_GRIST)>tls.c : @@ -11,7 +12,7 @@ KernelMergeObject os_arch_$(OBOS_ARCH).o : ; MergeObjectFromObjects kernel_os_arch_$(OBOS_ARCH).o : - # ToDo: remove atomic_xxx() functions from the kernel's libx86.a - #<$(SOURCE_GRIST)>atomic.o + <$(SOURCE_GRIST)>atomic.o <$(SOURCE_GRIST)>cpuid.o + <$(SOURCE_GRIST)>system_time.o ;