NetBSD/sys/compat/mach/mach_host.h
manu 2cd19ab0b2 - WindowServer wants io_master_port? Give it a port!
- introduce mach_port_destroy (badly emulated for now)
- on fork/exec, don't set l_private, as the process might be not mature
enough to survive a proc_representative_lwp call (-> kernel panic)

Once we give WindowServer the io_master_port, it sends a message to it:

   305 WindowServer MMSG  id 2804 [0x1310009 -> 0x131000e] -12016 bytes, flags 0
x1513
   0x0000  0x00001513 0xffffd110 0x0131000e 0x01310009   .........1...1..
   0x0010  0xffffcfd0 0x00000af4 0x00000000 0x00000000   ................
   0x0020  0xffffcf60 0x00000052 0x3c646963 0x74204944   ...`...R<dict ID
   0x0030  0x3d223022 0x3e3c6b65 0x793e494f 0x50726f76   ="0"><key>IOProv
   0x0040  0x69646572 0x436c6173 0x733c2f6b 0x65793e3c   iderClass</key><
   0x0050  0x73747269 0x6e672049 0x443d2231 0x223e494f   string ID="1">IO
   0x0060  0x48494453 0x79737465 0x6d3c2f73 0x7472696e   HIDSystem</strin
   0x0070  0x673e3c2f 0x64696374 0x3e0047cc              g></dict>.G.

Did you ever dreamt about system call arguments in XML?
2003-02-02 19:06:31 +00:00

167 lines
5.1 KiB
C

/* $NetBSD: mach_host.h,v 1.10 2003/02/02 19:07:17 manu Exp $ */
/*-
* Copyright (c) 2002-2003 The NetBSD Foundation, Inc.
* All rights reserved.
*
* This code is derived from software contributed to The NetBSD Foundation
* by Emmanuel Dreyfus
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by the NetBSD
* Foundation, Inc. and its contributors.
* 4. Neither the name of The NetBSD Foundation nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef _MACH_HOST_H_
#define _MACH_HOST_H_
#include <sys/types.h>
#include <sys/param.h>
#include <sys/signal.h>
#include <sys/proc.h>
#include <compat/mach/mach_types.h>
#include <compat/mach/mach_message.h>
/* host_info */
typedef mach_integer_t mach_host_flavor_t;
typedef struct {
mach_msg_header_t req_msgh;
mach_ndr_record_t req_ndr;
mach_host_flavor_t req_flavor;
mach_msg_type_number_t req_count;
} mach_host_info_request_t;
typedef struct {
mach_msg_header_t rep_msgh;
mach_ndr_record_t rep_ndr;
mach_kern_return_t rep_retval;
mach_msg_type_number_t rep_count;
mach_integer_t rep_data[12];
mach_msg_trailer_t rep_trailer;
} mach_host_info_reply_t;
typedef struct {
mach_msg_header_t rep_msgh;
mach_ndr_record_t rep_ndr;
mach_kern_return_t rep_retval;
mach_msg_type_number_t rep_count;
mach_msg_trailer_t rep_trailer;
} mach_host_info_reply_simple_t;
#define MACH_HOST_BASIC_INFO 1
#define MACH_HOST_SCHED_INFO 3
#define MACH_HOST_RESOURCE_SIZES 4
#define MACH_HOST_PRIORITY_INFO 5
#define MACH_HOST_SEMAPHORE_TRAPS 7
#define MACH_HOST_MACH_MSG_TRAP 8
struct mach_host_basic_info {
mach_integer_t max_cpus;
mach_integer_t avail_cpus;
mach_vm_size_t memory_size;
mach_cpu_type_t cpu_type;
mach_cpu_subtype_t cpu_subtype;
};
struct mach_host_sched_info {
mach_integer_t min_timeout;
mach_integer_t min_quantum;
};
struct mach_kernel_resource_sizes {
mach_vm_size_t task;
mach_vm_size_t thread;
mach_vm_size_t port;
mach_vm_size_t memory_region;
mach_vm_size_t memory_object;
};
struct mach_host_priority_info {
mach_integer_t kernel_priority;
mach_integer_t system_priority;
mach_integer_t server_priority;
mach_integer_t user_priority;
mach_integer_t depress_priority;
mach_integer_t idle_priority;
mach_integer_t minimum_priority;
mach_integer_t maximum_priority;
};
/* host_page_size */
typedef struct {
mach_msg_header_t req_msgh;
} mach_host_page_size_request_t;
typedef struct {
mach_msg_header_t rep_msgh;
mach_ndr_record_t rep_ndr;
mach_kern_return_t rep_retval;
mach_vm_size_t rep_page_size;
mach_msg_trailer_t rep_trailer;
} mach_host_page_size_reply_t;
/* host_get_clock_service */
typedef struct {
mach_msg_header_t req_msgh;
mach_ndr_record_t req_ndr;
mach_clock_id_t req_clock_id;
} mach_host_get_clock_service_request_t;
typedef struct {
mach_msg_header_t rep_msgh;
mach_msg_body_t rep_body;
mach_msg_port_descriptor_t rep_clock_serv;
mach_msg_trailer_t rep_trailer;
} mach_host_get_clock_service_reply_t;
/* mach_host_get_io_master */
typedef struct {
mach_msg_header_t req_msgh;
} mach_host_get_io_master_request_t;
typedef struct {
mach_msg_header_t rep_msgh;
mach_msg_body_t rep_body;
mach_msg_port_descriptor_t rep_iomaster;
mach_msg_trailer_t rep_trailer;
} mach_host_get_io_master_reply_t;
int mach_host_info(struct mach_trap_args *);
void mach_host_basic_info(struct mach_host_basic_info *);
void mach_host_priority_info(struct mach_host_priority_info *);
int mach_host_page_size(struct mach_trap_args *);
int mach_host_get_clock_service(struct mach_trap_args *);
int mach_host_get_io_master(struct mach_trap_args *);
#endif /* _MACH_HOST_H_ */