diff options
author | Andi Kleen <ak@suse.de> | 2007-02-13 15:26:26 +0300 |
---|---|---|
committer | Andi Kleen <andi@basil.nowhere.org> | 2007-02-13 15:26:26 +0300 |
commit | 9fbbd4dd17d0712054368e5e939e28b2456bfe1b (patch) | |
tree | 778766e35c52529ed0fc369ce1c3cf9382fc6e16 /include/linux/binfmts.h | |
parent | 120fad72401ebec2a126c16cc48f56c28f3eefe2 (diff) | |
download | linux-9fbbd4dd17d0712054368e5e939e28b2456bfe1b.tar.xz |
[PATCH] x86: Don't require the vDSO for handling a.out signals
and in other strange binfmts. vDSO is not necessarily mapped there.
Signed-off-by: Andi Kleen <ak@suse.de>
Diffstat (limited to 'include/linux/binfmts.h')
-rw-r--r-- | include/linux/binfmts.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/binfmts.h b/include/linux/binfmts.h index c1e82c514443..2d956cd566ae 100644 --- a/include/linux/binfmts.h +++ b/include/linux/binfmts.h @@ -59,6 +59,7 @@ struct linux_binfmt { int (*load_shlib)(struct file *); int (*core_dump)(long signr, struct pt_regs * regs, struct file * file); unsigned long min_coredump; /* minimal dump size */ + int hasvdso; }; extern int register_binfmt(struct linux_binfmt *); |