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/sys/resident.h

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  * SYS/RESIDENT.H
    3  *
    4  *      Userland system calls for resident executable support.
    5  *
    6  * $DragonFly: src/sys/sys/resident.h,v 1.4 2006/05/20 02:42:13 dillon Exp $
    7  */
    8 
    9 #ifndef _SYS_RESIDENT_H_
   10 #define _SYS_RESIDENT_H_
   11 
   12 #ifndef _SYS_TYPES_H_
   13 #include <sys/types.h>
   14 #endif
   15 #ifndef _SYS_PARAM_H_
   16 #include <sys/param.h>
   17 #endif
   18 #ifndef _SYS_STAT_H_
   19 #include <sys/stat.h>
   20 #endif
   21 
   22 #if !defined(_KERNEL)
   23 
   24 int exec_sys_register(void *);
   25 int exec_sys_unregister(int);
   26 
   27 #endif
   28 
   29 struct stat;
   30 /* structure exported via sysctl 'vm.resident' for userland */
   31 struct xresident {
   32         intptr_t        res_entry_addr;
   33         int             res_id;
   34         char            res_file[MAXPATHLEN];
   35         struct stat     res_stat;
   36 };
   37 
   38 #endif

Cache object: ea11422f2fca11b02a02d8bedc6342e3


[ 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.