david/ipxe
Archived
1
0
This repository has been archived on 2020-12-06. You can view files and clone it, but cannot push or open issues or pull requests.
ipxe/src/include/gpxe/errortab.h
Michael Brown dad5274522 Add "name" field to struct device to allow human-readable hardware device
names.

Add "dev" pointer in struct net_device to tie network interfaces back to a
hardware device.

Force natural alignment of data types in __table() macros.  This seems to
prevent gcc from taking the unilateral decision to occasionally increase
their alignment (which screws up the table packing).
2007-01-10 04:22:09 +00:00

21 lines
286 B
C

#ifndef _GPXE_ERRORTAB_H
#define _GPXE_ERRORTAB_H
/** @file
*
* Error message tables
*
*/
#include <errno.h>
#include <gpxe/tables.h>
struct errortab {
int errno;
const char *text;
};
#define __errortab __table ( struct errortab, errortab, 01 )
#endif /* _GPXE_ERRORTAB_H */