From 821a548da75eefa18540bb668624292c4408fd33 Mon Sep 17 00:00:00 2001 From: jake Date: Thu, 29 Aug 2002 06:17:48 +0000 Subject: Renamed poorly named setregs to exec_setregs. Moved its prototype to imgact.h with the other exec support functions. --- sys/kern/kern_exec.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sys/kern/kern_exec.c') diff --git a/sys/kern/kern_exec.c b/sys/kern/kern_exec.c index 887e75f..5e04c90 100644 --- a/sys/kern/kern_exec.c +++ b/sys/kern/kern_exec.c @@ -519,8 +519,8 @@ interpret: (*p->p_sysent->sv_setregs)(td, imgp->entry_addr, (u_long)(uintptr_t)stack_base, imgp->ps_strings); else - setregs(td, imgp->entry_addr, (u_long)(uintptr_t)stack_base, - imgp->ps_strings); + exec_setregs(td, imgp->entry_addr, + (u_long)(uintptr_t)stack_base, imgp->ps_strings); /* Cache arguments if they fit inside our allowance */ if (ps_arg_cache_limit >= i + sizeof(struct pargs)) { -- cgit v1.1