types.h (571B)
1 /* Copyright 1998-1999, Brian J. Swetland. All rights reserved. 2 ** Distributed under the terms of the OpenBLT License 3 */ 4 5 #ifndef _TYPES_H_ 6 #define _TYPES_H_ 7 8 #include <blt/types.h> 9 10 typedef struct __resource_t resource_t; 11 typedef struct __right_t right_t; 12 typedef struct __port_t port_t; 13 typedef struct __sem_t sem_t; 14 typedef struct __task_t task_t; 15 typedef struct __aspace_t aspace_t; 16 typedef struct __area_t area_t; 17 typedef struct __team_t team_t; 18 19 typedef struct __list_t list_t; 20 typedef struct __node_t node_t; 21 22 typedef struct __pager_fault_t pager_fault_t; 23 24 #endif