From f07a4c844da9f0ecae5bbee1ab94be56505f26f7 Mon Sep 17 00:00:00 2001 From: Thomas Bushnell Date: Tue, 25 Feb 1997 21:28:37 +0000 Subject: Initial source --- include/mach/flick_mach3.h | 75 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 75 insertions(+) create mode 100644 include/mach/flick_mach3.h (limited to 'include/mach/flick_mach3.h') diff --git a/include/mach/flick_mach3.h b/include/mach/flick_mach3.h new file mode 100644 index 0000000..7d7675d --- /dev/null +++ b/include/mach/flick_mach3.h @@ -0,0 +1,75 @@ +/* + * Copyright (c) 1995 The University of Utah and + * the Computer Systems Laboratory at the University of Utah (CSL). + * All rights reserved. + * + * Permission to use, copy, modify and distribute this software is hereby + * granted provided that (1) source code retains these copyright, permission, + * and disclaimer notices, and (2) redistributions including binaries + * reproduce the notices in supporting documentation, and (3) all advertising + * materials mentioning features or use of this software display the following + * acknowledgement: ``This product includes software developed by the + * Computer Systems Laboratory at the University of Utah.'' + * + * THE UNIVERSITY OF UTAH AND CSL ALLOW FREE USE OF THIS SOFTWARE IN ITS "AS + * IS" CONDITION. THE UNIVERSITY OF UTAH AND CSL DISCLAIM ANY LIABILITY OF + * ANY KIND FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE. + * + * CSL requests users of this software to return to csl-dist@cs.utah.edu any + * improvements that they make and grant CSL redistribution rights. + * + * Author: Bryan Ford, University of Utah CSL + */ +/* + * Glue for the Flick's Mach 3 backend. (Flick := Flexible IDL Compiler Kit.) + * This file is included from every header file generated by that backend. + * It provides standard MOM types and routines. + */ +#ifndef _MACH_FLICK_MACH3MIG_H_ +#define _MACH_FLICK_MACH3MIG_H_ + +#include +#include +#include + +typedef char mom_char8_t; +typedef unsigned8_t mom_unsigned8_t; +typedef unsigned16_t mom_unsigned16_t; +typedef unsigned32_t mom_unsigned32_t; +typedef signed8_t mom_signed8_t; +typedef signed16_t mom_signed16_t; +typedef signed32_t mom_signed32_t; + +typedef int mom_key_t; + +struct mom_ref +{ + mom_refcount_t count; + mach_port_t port; + + /* Chain on hash mom_ref hash table, + for canonicalization. */ + struct mom_ref *hash_next; + + /* Array of associations for this reference. */ + int assoc_count; + void *assoc[0]; +}; +typedef struct mom_ref *mom_ref_t; + +struct mom_obj +{ + void *handle; + + int port_count; + mach_port_t port[0]; +}; +typedef struct mom_obj *mom_obj_t; + +#define MOM__LABEL_BITS 8 +#define MOM__MAX_LABELS (1 << MOM__LABEL_BITS) + +#define mom_get_label_bits() MOM__LABEL_BITS + + +#endif /* _MACH_FLICK_MACH3MIG_H_ */ -- cgit v1.2.3