From 0da150b2946466b7692c57f5d99caa7ce282c935 Mon Sep 17 00:00:00 2001 From: Steve Reinhardt Date: Fri, 22 Oct 2004 22:49:12 -0400 Subject: Make targetarch directory in build tree and copy arch/alpha files to it instead of using symlink. The symlink broke scons's built-in include dependency tacking. Interestingly once it was fixed scons discovered two circular dependency problems which are also fixed now. SConscript: Make targetarch directory in build tree and copy arch/alpha files to it instead of using symlink. The symlink broke scons's built-in include dependency tacking. arch/alpha/ev5.hh: Get rid of circular #include dependence. kern/kernel_stats.cc: Add needed header file. kern/linux/linux_syscalls.hh: kern/tru64/tru64_syscalls.hh: Replace targetarch/syscalls.hh with single template class declaration. --HG-- extra : convert_revision : b8551623c1d441c6eb8d0651387e97e373128814 --- kern/tru64/tru64_syscalls.hh | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'kern/tru64/tru64_syscalls.hh') diff --git a/kern/tru64/tru64_syscalls.hh b/kern/tru64/tru64_syscalls.hh index f4853e3f8..7ddc699b1 100644 --- a/kern/tru64/tru64_syscalls.hh +++ b/kern/tru64/tru64_syscalls.hh @@ -29,11 +29,14 @@ #ifndef __TRU64_SYSCALLS_HH__ #define __TRU64_SYSCALLS_HH__ -#include "targetarch/syscalls.hh" #include "kern/tru64/tru64.hh" -struct SystemCalls +template +class SystemCalls; + +class SystemCalls { + public: enum { syscall = 0, exit = 1, -- cgit v1.2.3