Marcel Moolenaar 551d79e177 Fix multiple registration of the elf_legacy_coredump sysctl variable.
The duplication is caused by the fact that imgact_elf.c is included
by both imgact_elf32.c and imgact_elf64.c and both are compiled by
default on ia64. Consequently, we have two seperate copies of the
elf_legacy_coredump variable due to them being declared static, and
two entries for the same sysctl in the linker set, both referencing
the unique copy of the elf_legacy_coredump variable. Since the second
sysctl cannot be registered, one of the elf_legacy_coredump variables
can not be tuned (if ordering still holds, it's the ELF64 related one).

The only solution is to create two different sysctl variables, just
like the elf<32|64>_trace sysctl variables. This unfortunately is an
(user) interface change, but unavoidable. Thus, on ELF32 platforms
the sysctl variable is called elf32_legacy_coredump and on ELF64
platforms it is called elf64_legacy_coredump. Platforms that have
both ELF formats have both sysctl variables.

These variables should probably be retired sooner rather than later.
2002-12-21 01:15:39 +00:00
..
2002-12-14 22:25:35 +00:00
2002-12-18 21:47:52 +00:00
2002-12-16 00:49:36 +00:00
2002-10-18 21:41:41 +00:00
2002-12-18 18:52:20 +00:00
2002-12-18 11:46:59 +00:00
2002-11-20 15:21:06 +00:00
2002-11-27 06:04:49 +00:00
2002-12-14 01:56:26 +00:00