|
Revision 2413, 406 bytes
(checked in by dhozac, 2 years ago)
|
Update kernel headers to 2.6.19-vs2.1.x-t7.
Use the headers from make headers_install to cut down on unnecessary files/content.
|
- Property svn:eol-style set to
native
|
| Line | |
|---|
| 1 |
#ifndef _VX_DEBUG_CMD_H |
|---|
| 2 |
#define _VX_DEBUG_CMD_H |
|---|
| 3 |
|
|---|
| 4 |
|
|---|
| 5 |
|
|---|
| 6 |
|
|---|
| 7 |
#define VCMD_dump_history VC_CMD(DEBUG, 1, 0) |
|---|
| 8 |
|
|---|
| 9 |
#define VCMD_read_history VC_CMD(DEBUG, 5, 0) |
|---|
| 10 |
#define VCMD_read_monitor VC_CMD(DEBUG, 6, 0) |
|---|
| 11 |
|
|---|
| 12 |
struct vcmd_read_history_v0 { |
|---|
| 13 |
uint32_t index; |
|---|
| 14 |
uint32_t count; |
|---|
| 15 |
char *data; |
|---|
| 16 |
}; |
|---|
| 17 |
|
|---|
| 18 |
struct vcmd_read_monitor_v0 { |
|---|
| 19 |
uint32_t index; |
|---|
| 20 |
uint32_t count; |
|---|
| 21 |
char *data; |
|---|
| 22 |
}; |
|---|
| 23 |
|
|---|
| 24 |
|
|---|
| 25 |
#endif |
|---|