用来表示可被Linux理解的二进制文件格式。
[b]struct linux_binfmt {
struct linux_binfmt * next;
long *use_count;
int (*load_binary)(struct linux_binprm *, struct pt_regs * regs);
int (*load_shlib)(int fd);
int (*core_dump)(long signr, struct pt_regs * regs);
};[/b]
[b]struct linux_binfmt {
struct linux_binfmt * next;
long *use_count;
int (*load_binary)(struct linux_binprm *, struct pt_regs * regs);
int (*load_shlib)(int fd);
int (*core_dump)(long signr, struct pt_regs * regs);
};[/b]
本文介绍了一种用于Linux系统的二进制文件格式结构。该结构定义了处理二进制文件加载、共享库加载及核心转储等功能的接口。

1727

被折叠的 条评论
为什么被折叠?



