Update
[gdb.git] / gdb / osf-share / cma_sequence.h
blob8d362ed8d87125fcf6767c61eccb3afeee6392bd
1 /*
2 * (c) Copyright 1990-1996 OPEN SOFTWARE FOUNDATION, INC.
3 * (c) Copyright 1990-1996 HEWLETT-PACKARD COMPANY
4 * (c) Copyright 1990-1996 DIGITAL EQUIPMENT CORPORATION
5 * (c) Copyright 1991, 1992 Siemens-Nixdorf Information Systems
6 * To anyone who acknowledges that this file is provided "AS IS" without
7 * any express or implied warranty: permission to use, copy, modify, and
8 * distribute this file for any purpose is hereby granted without fee,
9 * provided that the above copyright notices and this notice appears in
10 * all source code copies, and that none of the names listed above be used
11 * in advertising or publicity pertaining to distribution of the software
12 * without specific, written prior permission. None of these organizations
13 * makes any representations about the suitability of this software for
14 * any purpose.
17 * Header file for sequence generator functions
20 #ifndef CMA_SEQUENCE
21 #define CMA_SEQUENCE
24 * INCLUDE FILES
28 * CONSTANTS AND MACROS
32 * TYPEDEFS
35 #ifndef __STDC__
36 struct CMA__T_INT_MUTEX;
37 #endif
39 typedef struct CMA__T_SEQUENCE {
40 struct CMA__T_INT_MUTEX *mutex; /* Serialize access to counter */
41 cma_t_natural seq; /* Sequence number for object */
42 } cma__t_sequence;
45 * GLOBAL DATA
49 * INTERNAL INTERFACES
52 extern cma_t_natural cma__assign_sequence (cma__t_sequence *);
54 extern void cma__init_sequence (cma__t_sequence *);
56 #endif