kern_exec.c (bafbd49201cc9cba4c0b2273d2f1c95b1650bc49) kern_exec.c (f36ba45234e29c86aa1d00093022d2f6c49f9c38)
1/*
2 * Copyright (c) 1993, David Greenman
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 71 unchanged lines hidden (view full) ---

80struct execlist {
81 execlist_fn function;
82 TAILQ_ENTRY(execlist) next;
83};
84
85TAILQ_HEAD(exec_list_head, execlist);
86static struct exec_list_head exec_list = TAILQ_HEAD_INITIALIZER(exec_list);
87
1/*
2 * Copyright (c) 1993, David Greenman
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 71 unchanged lines hidden (view full) ---

80struct execlist {
81 execlist_fn function;
82 TAILQ_ENTRY(execlist) next;
83};
84
85TAILQ_HEAD(exec_list_head, execlist);
86static struct exec_list_head exec_list = TAILQ_HEAD_INITIALIZER(exec_list);
87
88static register_t *exec_copyout_strings(struct image_params *);
89
90/* XXX This should be vm_size_t. */
91static u_long ps_strings = PS_STRINGS;
92SYSCTL_ULONG(_kern, KERN_PS_STRINGS, ps_strings, CTLFLAG_RD, &ps_strings,
93 0, "");
94
95/* XXX This should be vm_size_t. */
96static u_long usrstack = USRSTACK;
97SYSCTL_ULONG(_kern, KERN_USRSTACK, usrstack, CTLFLAG_RD, &usrstack, 0, "");

--- 1009 unchanged lines hidden ---
88/* XXX This should be vm_size_t. */
89static u_long ps_strings = PS_STRINGS;
90SYSCTL_ULONG(_kern, KERN_PS_STRINGS, ps_strings, CTLFLAG_RD, &ps_strings,
91 0, "");
92
93/* XXX This should be vm_size_t. */
94static u_long usrstack = USRSTACK;
95SYSCTL_ULONG(_kern, KERN_USRSTACK, usrstack, CTLFLAG_RD, &usrstack, 0, "");

--- 1009 unchanged lines hidden ---