From 11672356e7f870033e27f934c57a5d48d061991e Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Mon, 1 Sep 2008 11:28:56 +0000 Subject: Convert to using "bool". --- cpukit/libmisc/serdbg/serdbg.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'cpukit/libmisc/serdbg/serdbg.h') diff --git a/cpukit/libmisc/serdbg/serdbg.h b/cpukit/libmisc/serdbg/serdbg.h index 8057ee3ae4..375b03b5d5 100644 --- a/cpukit/libmisc/serdbg/serdbg.h +++ b/cpukit/libmisc/serdbg/serdbg.h @@ -28,12 +28,13 @@ #ifdef __cplusplus extern "C" { #endif + typedef struct { uint32_t baudrate; /* debug baud rate, e.g. 57600 */ void (*callout)(void); /* callout pointer during polling */ - int (*open_io)(const char *dev_name,uint32_t baudrate); /* I/O open fnc */ + int (*open_io)(const char *dev_name, uint32_t baudrate); /* I/O open fnc */ const char *devname; /* debug device, e.g. "/dev/tty01" */ - uint8_t skip_init_bkpt; /* if TRUE, do not stop when initializing */ + bool skip_init_bkpt; /* if TRUE, do not stop when initializing */ } serdbg_conf_t; /* -- cgit v1.2.3