delay.c

来自「LINUX 2.6.17.4的源码」· C语言 代码 · 共 22 行

C
22
字号
/* *	arch/m68knommu/lib/delay.c * *	(C) Copyright 2004, Greg Ungerer <gerg@snapgear.com> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. */#include <linux/module.h>#include <asm/param.h>#include <asm/delay.h>EXPORT_SYMBOL(udelay);void udelay(unsigned long usecs){	_udelay(usecs);}

⌨️ 快捷键说明

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