diff options
author | Andrey A. Chernov <ache@FreeBSD.org> | 1997-04-23 22:02:37 +0000 |
---|---|---|
committer | Andrey A. Chernov <ache@FreeBSD.org> | 1997-04-23 22:02:37 +0000 |
commit | a68c4b561f6a2996b00e918084920ad94af70bb8 (patch) | |
tree | b65ea89ae6e965b3d072c334838b13c445dfd25d | |
parent | 7cb74fcfa24f02189f1fe052b03b0a9244261a90 (diff) |
Notes
-rw-r--r-- | sys/sys/imgact.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/sys/imgact.h b/sys/sys/imgact.h index 7fc2097b22c7..9aaea432d439 100644 --- a/sys/sys/imgact.h +++ b/sys/sys/imgact.h @@ -30,7 +30,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $Id: imgact.h,v 1.14 1997/02/22 09:45:17 peter Exp $ */ #ifndef _SYS_IMGACT_H_ @@ -46,6 +46,7 @@ struct image_params { char *stringp; /* current 'end' pointer of tmp strings */ int stringspace; /* space left in tmp string storage area */ int argc, envc; /* count of argument and environment strings */ + char *argv0; /* Replacement for argv[0] when interpreting */ unsigned long entry_addr; /* entry address of target executable */ char vmspace_destroyed; /* flag - we've blown away original vm space */ char interpreted; /* flag - this executable is interpreted */ |