IssueNo:#I3E0F2

Description:Delete VM to support only kernel mode.
Sig:liteos_a
Feature or Bugfix:Feature
Binary Source:No

Change-Id: Ie1029c8fbc0c1b85c138663933118d2d148b7769
This commit is contained in:
YOUR_NAME
2021-03-29 14:30:09 +08:00
parent 23c2c270b8
commit c959d43684
40 changed files with 378 additions and 160 deletions
+3 -3
View File
@@ -30,10 +30,10 @@
*/
#include "los_user_init.h"
#ifdef LOSCFG_KERNEL_DYNLOAD
#include "los_syscall.h"
#ifdef LOSCFG_KERNEL_SYSCALL
#define SYS_CALL_VALUE 0x900001
#ifdef LOSCFG_QUICK_START
@@ -59,7 +59,6 @@ LITE_USER_SEC_TEXT STATIC UINT32 sys_call3(UINT32 nbr, UINT32 parm1, UINT32 parm
return reg0;
}
#endif
LITE_USER_SEC_ENTRY VOID OsUserInit(VOID *args)
{
@@ -69,3 +68,4 @@ LITE_USER_SEC_ENTRY VOID OsUserInit(VOID *args)
while (1) {
}
}
#endif