1 /* 2 * Copyright 2005, Axel Dörfler, axeld@pinc-software.de. 3 * Copyright 2019, Adrien Destugues, pulkomandy@pulkomandy.tk. 4 * Distributed under the terms of the MIT License. 5 */ 6 #ifndef _KERNEL_ARCH_SPARC_USER_DEBUGGER_H 7 #define _KERNEL_ARCH_SPARC_USER_DEBUGGER_H 8 9 10 struct arch_team_debug_info { 11 uint32 dummy; 12 }; 13 14 struct arch_thread_debug_info { 15 uint32 dummy; 16 }; 17 18 #endif // _KERNEL_ARCH_SPARC_USER_DEBUGGER_H 19 20