The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/kern/init_sysvec.c

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 /*
    2  * sysentvec for native FreeBSD a.out executable format.
    3  *
    4  * $FreeBSD: src/sys/kern/init_sysvec.c,v 1.2.2.2 1999/09/05 08:14:49 peter Exp $
    5  */
    6 
    7 #include <sys/types.h>
    8 #include <sys/param.h>
    9 #include <sys/mount.h>
   10 #include <sys/sysent.h>
   11 #include <sys/sysproto.h>
   12 #include <sys/syscall.h>
   13 #include <sys/signalvar.h>
   14 #include <machine/md_var.h>
   15 
   16 struct sysentvec aout_sysvec = {
   17         SYS_MAXSYSCALL,
   18         sysent,
   19         0,
   20         0,
   21         0,
   22         0,
   23         0,
   24         0,
   25         0,
   26         sendsig,
   27         sigcode,
   28         &szsigcode,
   29         0,
   30         "FreeBSD a.out"
   31 };

Cache object: e91e02459d3a7d88f2ed6eb961870ef1


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.