optimize code standards

This commit is contained in:
Liu_Weichao
2021-04-29 12:55:01 +08:00
parent 34383bdcde
commit b4e108d620
29 changed files with 116 additions and 142 deletions

View File

@@ -82,7 +82,7 @@ void IsrEntry()
uintptr_t *Svcall(unsigned int ipsr , uintptr_t* contex )
{
#ifdef TASK_ISOLATION
__svcall(contex);
_svcall(contex);
#endif
return contex;
}

View File

@@ -46,7 +46,7 @@ static void SvcDispatch(void)
}
void __svcall(uintptr_t* contex)
void _svcall(uintptr_t* contex)
{
uint32_t svc_number;
KTaskDescriptorType tid;