Mercurial > MadButterfly
changeset 988:bc8cfcd40d0e refine_backend_if
Rename _x_mb_io_man* to _x_supp_io_man*
author | Thinker K.F. Li <thinker@codemud.net> |
---|---|
date | Mon, 22 Nov 2010 00:42:29 +0800 |
parents | bf0da8c7d03f |
children | 7a727ba3f441 |
files | src/X_supp.c |
diffstat | 1 files changed, 17 insertions(+), 17 deletions(-) [+] |
line wrap: on
line diff
--- a/src/X_supp.c Mon Nov 22 00:42:29 2010 +0800 +++ b/src/X_supp.c Mon Nov 22 00:42:29 2010 +0800 @@ -106,43 +106,43 @@ void *data; } monitor_t; -struct _X_MB_IO_man { +struct _X_supp_IO_man { mb_IO_man_t io_man; monitor_t monitors[MAX_MONITORS]; int n_monitor; }; -int _x_mb_io_man_reg(struct _mb_IO_man *io_man, - int fd, MB_IO_TYPE type, mb_IO_cb_t cb, void *data); -void _x_mb_io_man_unreg(struct _mb_IO_Man *io_man, int io_hdl); -mb_IO_man_t *_x_mb_io_man_new(void); -void _x_mb_io_man_free(mb_IO_man_t *io_man); +int _x_supp_io_man_reg(struct _mb_IO_man *io_man, + int fd, MB_IO_TYPE type, mb_IO_cb_t cb, void *data); +void _x_supp_io_man_unreg(struct _mb_IO_Man *io_man, int io_hdl); +mb_IO_man_t *_x_supp_io_man_new(void); +void _x_supp_io_man_free(mb_IO_man_t *io_man); static mb_IO_factory_t _X_supp_default_io_factory = { - _x_mb_io_man_new, - _x_mb_io_man_free + _x_supp_io_man_new, + _x_supp_io_man_free }; static mb_IO_factory_t *_io_factory = _X_supp_default_io_factory; -static struct _X_MB_IO_man _default_io_man = { - {_x_mb_io_man_reg, _x_mb_io_man_unreg}, +static struct _X_supp_IO_man _default_io_man = { + {_x_supp_io_man_reg, _x_supp_io_man_unreg}, {}, /* monitors */ 0 /* n_monitor */ }; static mb_IO_man_t * -_x_mb_io_man_new(void) { +_x_supp_io_man_new(void) { return (mb_IO_man_t *)&_default_io_man; } static void -_x_mb_io_man_free(mb_IO_man_t *io_man) { +_x_supp_io_man_free(mb_IO_man_t *io_man) { } static int -_x_mb_io_man_reg(struct _mb_IO_man *io_man, - int fd, MB_IO_TYPE type, mb_IO_cb_t cb, void *data) { - struct _x_mb_io_man *xmb_io_man = (struct _x_mb_io_man *)io_man; +_x_supp_io_man_reg(struct _mb_IO_man *io_man, + int fd, MB_IO_TYPE type, mb_IO_cb_t cb, void *data) { + struct _x_supp_io_man *xmb_io_man = (struct _x_supp_io_man *)io_man; int i; for(i = 0; i < xmb_io_man->n_monitor; i++) { @@ -163,8 +163,8 @@ } static void -_x_mb_io_man_unreg(struct _mb_IO_man *io_man, int io_hdl) { - struct _x_mb_io_man *xmb_io_man = (struct _x_mb_io_man *)io_man; +_x_supp_io_man_unreg(struct _mb_IO_man *io_man, int io_hdl) { + struct _x_supp_io_man *xmb_io_man = (struct _x_supp_io_man *)io_man; ASSERT(io_hdl < xmb_io_man->n_monitor); xmb_io_man->monitors[io_hdl].type = MB_IO_DUMMY;