delay.c
来自「底层驱动开发」· 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 + -
显示快捷键?