m68k_ksyms.c
来自「linux 内核源代码」· C语言 代码 · 共 23 行
C
23 行
#include <linux/module.h>#include <asm/semaphore.h>asmlinkage long long __ashldi3 (long long, int);asmlinkage long long __ashrdi3 (long long, int);asmlinkage long long __lshrdi3 (long long, int);asmlinkage long long __muldi3 (long long, long long);/* The following are special because they're not called explicitly (the C compiler generates them). Fortunately, their interface isn't gonna change any time soon now, so it's OK to leave it out of version control. */EXPORT_SYMBOL(__ashldi3);EXPORT_SYMBOL(__ashrdi3);EXPORT_SYMBOL(__lshrdi3);EXPORT_SYMBOL(__muldi3);EXPORT_SYMBOL(__down_failed);EXPORT_SYMBOL(__down_failed_interruptible);EXPORT_SYMBOL(__down_failed_trylock);EXPORT_SYMBOL(__up_wakeup);
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?