]> git.saurik.com Git - apple/xnu.git/blobdiff - bsd/machine/exec.h
xnu-792.21.3.tar.gz
[apple/xnu.git] / bsd / machine / exec.h
index 6dd16564a10c5f68b3f43aa37ffc423147bb2e26..dbdaf3053f0e11f96c4fafc7f8cac654cb3bd37f 100644 (file)
 #ifndef _BSD_MACHINE_EXEC_H_
 #define _BSD_MACHINE_EXEC_H_
 
-#include <sys/param.h>
-
-struct exec_archhandler {
-       char path[MAXPATHLEN];
-       uint32_t fsid;
-       long fileid;
-};
-
-extern struct exec_archhandler exec_archhandler_ppc;
-extern int set_archhandler(struct proc *p, int arch);
-extern int grade_binary(cpu_type_t exectype, cpu_subtype_t execsubtype);
 
 #if defined (__ppc__) || defined (__ppc64__)
 #include "ppc/exec.h"
-#elif defined (__i386__) || defined(__x86_64__)
+#elif defined (__i386__)
 #include "i386/exec.h"
 #else
 #error architecture not supported