We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be80086 commit ec86009Copy full SHA for ec86009
tools/acrn-manager/acrn_mngr.h
@@ -34,23 +34,6 @@ enum msgid {
34
MSG_MAX,
35
};
36
37
-/* For test, generate a message who carry a string
38
- * eg., VMM_MSG_STR(hello_msg, "Hello\n") will create hello_msg,
39
- * then you can write(sock_fd, hello_msg, sizeof(hello_msg))
40
- */
41
-#define MNGR_MSG_STR(var, str) \
42
-struct mngr_msg_##var { \
43
-struct mngr_msg msg; \
44
- char raw[sizeof(str)]; \
45
-} var = { \
46
- .msg = { \
47
- .magic = MNGR_MSG_MAGIC, \
48
- .msgid = MSG_STR, \
49
- .len = sizeof(struct mngr_msg_##var), \
50
- }, \
51
- .raw = str, \
52
-}
53
-
54
/* DM handled message event types */
55
enum dm_msgid {
56
DM_STOP = MSG_MAX + 1, /* Stop this UOS */
0 commit comments