From ea1e34d0c957e00ae335d21b817cb316bfafa43e Mon Sep 17 00:00:00 2001 From: peter Date: Sat, 17 Apr 1999 07:55:15 +0000 Subject: [PATCH] Image activators use EXEC_SET(), not TEXT_SET(). (The first is a macro wrapper for DECLARE_MODULE(), the second is a linker set declaration) --- sys/compat/svr4/imgact_svr4.c | 2 +- sys/svr4/imgact_svr4.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/compat/svr4/imgact_svr4.c b/sys/compat/svr4/imgact_svr4.c index 132480598546..42ac305eeb0d 100644 --- a/sys/compat/svr4/imgact_svr4.c +++ b/sys/compat/svr4/imgact_svr4.c @@ -233,5 +233,5 @@ exec_svr4_imgact(imgp) * correct directive to use. Do not staticize; used by Linux LKM. */ const struct execsw svr4_execsw = { exec_svr4_imgact, "svr4 ELF" }; -TEXT_SET(execsw_set, svr4_execsw); +EXEC_SET(execsw_set, svr4_execsw); diff --git a/sys/svr4/imgact_svr4.c b/sys/svr4/imgact_svr4.c index 132480598546..42ac305eeb0d 100644 --- a/sys/svr4/imgact_svr4.c +++ b/sys/svr4/imgact_svr4.c @@ -233,5 +233,5 @@ exec_svr4_imgact(imgp) * correct directive to use. Do not staticize; used by Linux LKM. */ const struct execsw svr4_execsw = { exec_svr4_imgact, "svr4 ELF" }; -TEXT_SET(execsw_set, svr4_execsw); +EXEC_SET(execsw_set, svr4_execsw);