/* Internal definitions for the arch part of the core kernel1*2* Copyright (C) 2007 Red Hat, Inc. All Rights Reserved.3* Written by David Howells ([email protected])4*5* This program is free software; you can redistribute it and/or6* modify it under the terms of the GNU General Public Licence7* as published by the Free Software Foundation; either version8* 2 of the Licence, or (at your option) any later version.9*/1011struct clocksource;12struct clock_event_device;1314/*15* kthread.S16*/17extern int kernel_thread_helper(int);1819/*20* entry.S21*/22extern void ret_from_fork(struct task_struct *) __attribute__((noreturn));2324/*25* smp-low.S26*/27#ifdef CONFIG_SMP28extern void mn10300_low_ipi_handler(void);29#endif3031/*32* smp.c33*/34#ifdef CONFIG_SMP35extern void smp_jump_to_debugger(void);36#endif3738/*39* time.c40*/41extern irqreturn_t local_timer_interrupt(void);424344