blob: 7d7675db574a8411cbba399ea10c5b9ee62d14af (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
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 <mach/boolean.h>
#include <mach/port.h>
#include <mach/message.h>
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_ */
|