⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 irq.c

📁 一个2.4.21版本的嵌入式linux内核
💻 C
字号:
/* * Copyright 2001 MontaVista Software Inc. * Author: jsun@mvista.com or jsun@junsun.net * * arch/mips/ddb5xxx/common/irq.c *     Common irq code for DDB boards.  This really should belong *	arch/mips/kernel/irq.c.  Need to talk to Ralf. * * This program is free software; you can redistribute  it and/or modify it * under  the terms of  the GNU General  Public License as published by the * Free Software Foundation;  either version 2 of the  License, or (at your * option) any later version. */#include <linux/config.h>#include <linux/init.h>#include <asm/irq.h>void (*irq_setup)(void);void __init init_IRQ(void){#ifdef CONFIG_REMOTE_DEBUG	extern void breakpoint(void);	extern void set_debug_traps(void);	printk("Wait for gdb client connection ...\n");	set_debug_traps();	breakpoint();#endif	/* set up default irq controller */	init_generic_irq();	/* invoke board-specific irq setup */	irq_setup();}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -