Joel Sherrill 34e1fb2c5a Add support for kvm.h in RTEMS terms
The implementation uses an array of strings and variable names. The
names are weak symbolic references to the items we have seen calls
to kvm services with.
2012-10-24 15:38:22 -05:00

14 lines
189 B
C

#ifndef __KVM_PRIVATE_h
#define __KVM_PRIVATE_h
#include <stdint.h>
typedef struct {
const char *symbol;
uintptr_t value;
} kvm_symval_t;
kvm_symval_t rtems_kvm_symbols[];
#endif