imgact_linux.c (43bef515674a076bd7949c195a144422d941615b) | imgact_linux.c (d323ddf3171ff6652c94cb9f79105f48f5ea8819) |
---|---|
1/*- 2 * Copyright (c) 1994-1996 S�ren Schmidt 3 * All rights reserved. 4 * 5 * Based heavily on /sys/kern/imgact_aout.c which is: 6 * Copyright (c) 1993, David Greenman 7 * 8 * Redistribution and use in source and binary forms, with or without --- 38 unchanged lines hidden (view full) --- 47#include <vm/vm_kern.h> 48#include <vm/vm_param.h> 49#include <vm/pmap.h> 50#include <vm/vm_map.h> 51#include <vm/vm_extern.h> 52 53#include <i386/linux/linux.h> 54 | 1/*- 2 * Copyright (c) 1994-1996 S�ren Schmidt 3 * All rights reserved. 4 * 5 * Based heavily on /sys/kern/imgact_aout.c which is: 6 * Copyright (c) 1993, David Greenman 7 * 8 * Redistribution and use in source and binary forms, with or without --- 38 unchanged lines hidden (view full) --- 47#include <vm/vm_kern.h> 48#include <vm/vm_param.h> 49#include <vm/pmap.h> 50#include <vm/vm_map.h> 51#include <vm/vm_extern.h> 52 53#include <i386/linux/linux.h> 54 |
55extern struct sysentvec linux_sysvec; 56 | |
57static int exec_linux_imgact __P((struct image_params *iparams)); 58 59static int 60exec_linux_imgact(imgp) 61 struct image_params *imgp; 62{ 63 const struct exec *a_out = (const struct exec *) imgp->image_header; 64 struct vmspace *vmspace; --- 175 unchanged lines hidden --- | 55static int exec_linux_imgact __P((struct image_params *iparams)); 56 57static int 58exec_linux_imgact(imgp) 59 struct image_params *imgp; 60{ 61 const struct exec *a_out = (const struct exec *) imgp->image_header; 62 struct vmspace *vmspace; --- 175 unchanged lines hidden --- |