diff options
author | Russell King <rmk@dyn-67.arm.linux.org.uk> | 2005-07-28 04:30:20 -0400 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2005-07-28 04:30:20 -0400 |
commit | 661299d9d0437a0ff72240f3d60016ac3a361a6e (patch) | |
tree | 765512576314fc3612b503f182b9ae4e60fcf849 /arch/x86_64/ia32/ia32_aout.c | |
parent | 05caac585f8abd6c0113856bc8858e3ef214d8a6 (diff) | |
parent | 41c018b7ecb60b1c2c4d5dee0cd37d32a94c45af (diff) |
Merge with Linus' 2.6 tree
Diffstat (limited to 'arch/x86_64/ia32/ia32_aout.c')
-rw-r--r-- | arch/x86_64/ia32/ia32_aout.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/x86_64/ia32/ia32_aout.c b/arch/x86_64/ia32/ia32_aout.c index c12edf5d97f0..3e6780fa0186 100644 --- a/arch/x86_64/ia32/ia32_aout.c +++ b/arch/x86_64/ia32/ia32_aout.c | |||
@@ -42,7 +42,7 @@ extern int ia32_setup_arg_pages(struct linux_binprm *bprm, | |||
42 | static int load_aout_binary(struct linux_binprm *, struct pt_regs * regs); | 42 | static int load_aout_binary(struct linux_binprm *, struct pt_regs * regs); |
43 | static int load_aout_library(struct file*); | 43 | static int load_aout_library(struct file*); |
44 | 44 | ||
45 | #if CORE_DUMP | 45 | #ifdef CORE_DUMP |
46 | static int aout_core_dump(long signr, struct pt_regs * regs, struct file *file); | 46 | static int aout_core_dump(long signr, struct pt_regs * regs, struct file *file); |
47 | 47 | ||
48 | /* | 48 | /* |
@@ -103,7 +103,7 @@ static struct linux_binfmt aout_format = { | |||
103 | .module = THIS_MODULE, | 103 | .module = THIS_MODULE, |
104 | .load_binary = load_aout_binary, | 104 | .load_binary = load_aout_binary, |
105 | .load_shlib = load_aout_library, | 105 | .load_shlib = load_aout_library, |
106 | #if CORE_DUMP | 106 | #ifdef CORE_DUMP |
107 | .core_dump = aout_core_dump, | 107 | .core_dump = aout_core_dump, |
108 | #endif | 108 | #endif |
109 | .min_coredump = PAGE_SIZE | 109 | .min_coredump = PAGE_SIZE |
@@ -120,7 +120,7 @@ static void set_brk(unsigned long start, unsigned long end) | |||
120 | up_write(¤t->mm->mmap_sem); | 120 | up_write(¤t->mm->mmap_sem); |
121 | } | 121 | } |
122 | 122 | ||
123 | #if CORE_DUMP | 123 | #ifdef CORE_DUMP |
124 | /* | 124 | /* |
125 | * These are the only things you should do on a core-file: use only these | 125 | * These are the only things you should do on a core-file: use only these |
126 | * macros to write out all the necessary info. | 126 | * macros to write out all the necessary info. |