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/ipc_host.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  * Mach Operating System
    3  * Copyright (c) 1992,1991,1990,1989,1988 Carnegie Mellon University
    4  * All Rights Reserved.
    5  * 
    6  * Permission to use, copy, modify and distribute this software and its
    7  * documentation is hereby granted, provided that both the copyright
    8  * notice and this permission notice appear in all copies of the
    9  * software, derivative works or modified versions, and any portions
   10  * thereof, and that both notices appear in supporting documentation.
   11  * 
   12  * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
   13  * CONDITION.  CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR
   14  * ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
   15  * 
   16  * Carnegie Mellon requests users of this software to return to
   17  * 
   18  *  Software Distribution Coordinator  or  Software.Distribution@CS.CMU.EDU
   19  *  School of Computer Science
   20  *  Carnegie Mellon University
   21  *  Pittsburgh PA 15213-3890
   22  * 
   23  * any improvements or extensions that they make and grant Carnegie Mellon
   24  * the rights to redistribute these changes.
   25  */
   26 /*
   27  * HISTORY
   28  * $Log:        ipc_host.h,v $
   29  * Revision 2.6  93/01/14  17:34:26  danner
   30  *      Added function prototypes.  Combined ipc_processor_init and
   31  *      ipc_processor_enable.  Removed ipc_processor_disable and
   32  *      ipc_processor_terminate; processor ports are never removed.
   33  *      [92/11/17            dbg]
   34  *      Added function prototypes.  Combined ipc_processor_init and
   35  *      ipc_processor_enable.  Removed ipc_processor_disable and
   36  *      ipc_processor_terminate; processor ports are never removed.
   37  *      [92/11/17            dbg]
   38  * 
   39  * Revision 2.5  91/06/25  10:28:30  rpd
   40  *      Changed the convert_foo_to_bar functions
   41  *      to use ipc_port_t instead of mach_port_t.
   42  *      [91/05/27            rpd]
   43  * 
   44  * Revision 2.4  91/05/14  16:41:53  mrt
   45  *      Correcting copyright
   46  * 
   47  * Revision 2.3  91/02/05  17:26:34  mrt
   48  *      Changed to new Mach copyright
   49  *      [91/02/01  16:12:40  mrt]
   50  * 
   51  * Revision 2.2  90/06/02  14:54:04  rpd
   52  *      Created for new IPC.
   53  *      [90/03/26  23:46:41  rpd]
   54  * 
   55  *      Merge to X96
   56  *      [89/08/02  22:55:33  dlb]
   57  * 
   58  *      Created.
   59  *      [88/12/01            dlb]
   60  * 
   61  * Revision 2.3  89/10/15  02:04:36  rpd
   62  *      Minor cleanups.
   63  * 
   64  * Revision 2.2  89/10/11  14:07:24  dlb
   65  *      Merge.
   66  *      [89/09/01  17:25:42  dlb]
   67  * 
   68  */ 
   69 
   70 #ifndef _KERN_IPC_HOST_H_
   71 #define _KERN_IPC_HOST_H_
   72 
   73 #include <mach/port.h>
   74 #include <kern/processor.h>
   75 
   76 extern void ipc_host_init(void);
   77 
   78 extern void ipc_processor_init(processor_t);
   79 
   80 extern void ipc_pset_init(processor_set_t);
   81 extern void ipc_pset_enable(processor_set_t);
   82 extern void ipc_pset_disable(processor_set_t);
   83 extern void ipc_pset_terminate(processor_set_t);
   84 
   85 extern struct host *
   86 convert_port_to_host(struct ipc_port *);
   87 
   88 extern struct ipc_port *
   89 convert_host_to_port(struct host *);
   90 
   91 extern struct host *
   92 convert_port_to_host_priv(struct ipc_port *);
   93 
   94 extern processor_t
   95 convert_port_to_processor(struct ipc_port *);
   96 
   97 extern struct ipc_port *
   98 convert_processor_to_port(processor_t);
   99 
  100 extern processor_set_t
  101 convert_port_to_pset(struct ipc_port *);
  102 
  103 extern struct ipc_port *
  104 convert_pset_to_port(processor_set_t);
  105 
  106 extern processor_set_t
  107 convert_port_to_pset_name(struct ipc_port *);
  108 
  109 extern struct ipc_port *
  110 convert_pset_name_to_port(processor_set_t);
  111 
  112 #endif  _KERN_IPC_HOST_H_

Cache object: 5ed65c19240cda672e05a09b6c5eb9d7


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