1 /* 2 ** Copyright 2001, Travis Geiselbrecht. All rights reserved. 3 ** Distributed under the terms of the NewOS License. 4 */ 5 #ifndef _SPARC64_THREAD_STRUCT_H 6 #define _SPARC64_THREAD_STRUCT_H 7 8 // architecture specific thread info 9 struct arch_thread { 10 addr sp; 11 }; 12 13 struct arch_proc { 14 int foo; 15 }; 16 17 #endif 18 19