Message type for SYS_READBIOS.

Change-Id: Id19f658f5eb5f350e3e19f9ce3f8ae80aea23c51
This commit is contained in:
2014-07-25 15:54:54 +02:00
parent b51e653dd4
commit f45c6b86cb
4 changed files with 21 additions and 15 deletions

View File

@@ -371,11 +371,6 @@
#define PROF_CTL_PTR m7_p1 /* location of info struct */
#define PROF_MEM_PTR m7_p2 /* location of profiling data */
/* Field names for SYS_READBIOS. */
#define RDB_SIZE m2_i1
#define RDB_ADDR m2_l1
#define RDB_BUF m2_p1
/* Field names for SYS_VMCTL. */
#define SVMCTL_WHO m1_i1
#define SVMCTL_PARAM m1_i2 /* All SYS_VMCTL requests. */

View File

@@ -115,6 +115,15 @@ typedef struct {
} mess_11;
_ASSERT_MSG_SIZE(mess_11);
typedef struct {
size_t size;
phys_bytes addr;
vir_bytes buf;
uint8_t padding[44];
} mess_lsys_krn_readbios;
_ASSERT_MSG_SIZE(mess_lsys_krn_readbios);
typedef struct {
off_t offset;
void *addr;
@@ -1952,6 +1961,7 @@ typedef struct {
mess_notify m_notify;
mess_sigcalls m_sigcalls;
mess_lsys_krn_readbios m_lsys_krn_readbios;
mess_input_tty_event m_input_tty_event;
mess_krn_lsys_schedule m_krn_lsys_schedule;