71 lines
1.6 KiB
C
71 lines
1.6 KiB
C
/* wdbEvtLib.h - header file for remote debug events */
|
|
|
|
/* Copyright 1984-2003 Wind River Systems, Inc. */
|
|
|
|
/*
|
|
modification history
|
|
--------------------
|
|
01g,28feb03,elg Merge file from BSD/OS.
|
|
01f,25apr02,jhw Added C++ support (SPR 76304).
|
|
01e,12feb99,dbt use wdb/ prefix to include wdb.h header file.
|
|
01d,04feb98,dbt moved eventpoint handling to wdbEvtptLib.h
|
|
01c,07jun95,ms added prototype for wdbEvtptDeleteAll
|
|
01b,05apr95,ms new data types.
|
|
01a,20sep94,ms written.
|
|
*/
|
|
|
|
#ifndef __INCwdbEvtLibh
|
|
#define __INCwdbEvtLibh
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/* includes */
|
|
|
|
#include "wdb/dll.h"
|
|
#include "wdb/wdb.h"
|
|
|
|
/* defines */
|
|
|
|
#define wdbEventListIsEmpty() (__wdbEventListIsEmpty == NULL ? TRUE : \
|
|
(*__wdbEventListIsEmpty)())
|
|
|
|
/* data types */
|
|
|
|
typedef struct /* hidden */
|
|
{
|
|
dll_t evt_list;
|
|
WDB_EVT_TYPE evt_type;
|
|
UINT32 (*evt_eventAdd) (WDB_EVTPT_ADD_DESC *pEvtpt, UINT32 *pId);
|
|
UINT32 (*evt_eventDel) (TGT_ADDR_T *pId);
|
|
} WDB_EVT_CLASS;
|
|
|
|
typedef struct
|
|
{
|
|
dll_t node;
|
|
BOOL onQueue;
|
|
void (*getEvent) (void *arg, WDB_EVT_DATA *pEvtData);
|
|
void (*deq) (void *arg);
|
|
void * arg;
|
|
} WDB_EVT_NODE;
|
|
|
|
/* function prototypes */
|
|
|
|
IMPORT void wdbEventNodeInit (WDB_EVT_NODE * pEvtNode,
|
|
void (*getEvent) (void *arg,
|
|
WDB_EVT_DATA *pEvtData),
|
|
void (*deq) (void *arg),
|
|
void *arg);
|
|
IMPORT void wdbEventPost (WDB_EVT_NODE * pEvtNode);
|
|
IMPORT STATUS wdbEventDeq (WDB_EVT_NODE * pEvtNode);
|
|
IMPORT void wdbEventClassConnect (WDB_EVT_CLASS * pEvtList);
|
|
IMPORT BOOL (*__wdbEventListIsEmpty) (void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* __INCwdbEvtLibh */
|
|
|