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

📄 sh_ksyms.c

📁 Linux内核源代码 为压缩文件 是<<Linux内核>>一书中的源代码
💻 C
字号:
#include <linux/config.h>#include <linux/module.h>#include <linux/smp.h>#include <linux/user.h>#include <linux/elfcore.h>#include <linux/mca.h>#include <linux/sched.h>#include <linux/in6.h>#include <linux/interrupt.h>#include <linux/smp_lock.h>#include <linux/vmalloc.h>#include <asm/semaphore.h>#include <asm/processor.h>#include <asm/uaccess.h>#include <asm/checksum.h>#include <asm/io.h>#include <asm/hardirq.h>#include <asm/delay.h>#include <linux/irq.h>extern void dump_thread(struct pt_regs *, struct user *);extern int dump_fpu(elf_fpregset_t *);extern struct hw_interrupt_type no_irq_type;/* platform dependent support */EXPORT_SYMBOL(dump_thread);EXPORT_SYMBOL(dump_fpu);EXPORT_SYMBOL(iounmap);EXPORT_SYMBOL(enable_irq);EXPORT_SYMBOL(disable_irq);EXPORT_SYMBOL(kernel_thread);EXPORT_SYMBOL(disable_irq_nosync);EXPORT_SYMBOL(irq_desc);EXPORT_SYMBOL(no_irq_type);/* Networking helper routines. */EXPORT_SYMBOL(csum_partial_copy);EXPORT_SYMBOL(simple_strtol);EXPORT_SYMBOL(strtok);EXPORT_SYMBOL(strpbrk);EXPORT_SYMBOL(strstr);EXPORT_SYMBOL(strlen);EXPORT_SYMBOL(strchr);EXPORT_SYMBOL(strcat);/* mem exports */EXPORT_SYMBOL(memchr);EXPORT_SYMBOL(memcpy);EXPORT_SYMBOL(memset);EXPORT_SYMBOL(memmove);EXPORT_SYMBOL(memcmp);#ifdef CONFIG_VTEXPORT_SYMBOL(screen_info);#endifEXPORT_SYMBOL(boot_cpu_data);EXPORT_SYMBOL(get_vm_area);#define DECLARE_EXPORT(name) extern void name(void);EXPORT_SYMBOL_NOVERS(name) /* These symbols are generated by the compiler itself */#ifdef __SH4__ DECLARE_EXPORT(__udivsi3_i4);DECLARE_EXPORT(__sdivsi3_i4);DECLARE_EXPORT(__movstr_i4_even);DECLARE_EXPORT(__movstr_i4_odd);DECLARE_EXPORT(__ashrdi3);DECLARE_EXPORT(__ashldi3);/* needed by some modules */EXPORT_SYMBOL(flush_dcache_page);#endif

⌨️ 快捷键说明

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