diff options
Diffstat (limited to 'sys/kern/kern_exec.c')
| -rw-r--r-- | sys/kern/kern_exec.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/sys/kern/kern_exec.c b/sys/kern/kern_exec.c index 2b1287528ff9..b8b0f0ab0109 100644 --- a/sys/kern/kern_exec.c +++ b/sys/kern/kern_exec.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: kern_exec.c,v 1.21.4.2 1996/02/22 19:20:47 peter Exp $ + * $Id: kern_exec.c,v 1.21.4.3 1996/04/08 01:28:09 davidg Exp $ */ #include <sys/param.h> @@ -52,6 +52,12 @@ int *exec_copyout_strings __P((struct image_params *)); static int exec_check_permissions(struct image_params *); /* + * Exported to userland via sysctl.. + */ +int exec_ps_strings = PS_STRINGS; +int exec_usrstack = USRSTACK; + +/* * execsw_set is constructed for us by the linker. Each of the items * is a pointer to a `const struct execsw', hence the double pointer here. */ |
