Avoid use of C++ reserved word class in headers (reported by Aki Goto, tracker item 375)

This commit is contained in:
Erik van der Kouwe
2010-05-27 08:48:53 +00:00
parent b48b037fbe
commit 43b589c1cc
4 changed files with 9 additions and 9 deletions

View File

@@ -54,7 +54,7 @@ struct rs_start
int rss_nr_pci_id;
struct { u16_t vid; u16_t did; } rss_pci_id[RS_NR_PCI_DEVICE];
int rss_nr_pci_class;
struct { u32_t class; u32_t mask; } rss_pci_class[RS_NR_PCI_CLASS];
struct { u32_t pciclass; u32_t mask; } rss_pci_class[RS_NR_PCI_CLASS];
bitchunk_t rss_system[SYS_CALL_MASK_SIZE];
struct rss_label rss_label;
char *rss_ipc;
@@ -72,7 +72,7 @@ struct rs_pci
int rsp_nr_device;
struct { u16_t vid; u16_t did; } rsp_device[RS_NR_PCI_DEVICE];
int rsp_nr_class;
struct { u32_t class; u32_t mask; } rsp_class[RS_NR_PCI_CLASS];
struct { u32_t pciclass; u32_t mask; } rsp_class[RS_NR_PCI_CLASS];
};
/* Definition of a public entry of the system process table. */

View File

@@ -77,14 +77,14 @@ extern struct state _res;
struct rrec;
int res_init _ARGS(( void ));
int res_mkquery _ARGS(( int op, const char *dname, int class, int type,
int res_mkquery _ARGS(( int op, const char *dname, int cls, int type,
const char *data, int datalen, const struct rrec *newrr,
char *buf, int buflen ));
int res_query _ARGS(( char *name, int class, int type, u8_t *answer,
int res_query _ARGS(( char *name, int cls, int type, u8_t *answer,
int anslen ));
int res_querydomain _ARGS(( char *name, char *domain, int class, int type,
int res_querydomain _ARGS(( char *name, char *domain, int cls, int type,
u8_t *answer, int anslen ));
int res_search _ARGS(( char *name, int class, int type, u8_t *answer,
int res_search _ARGS(( char *name, int cls, int type, u8_t *answer,
int anslen ));
int res_send _ARGS(( const char *buf, int buflen, char *answer, int anslen ));
void _res_close _ARGS(( void ));