IssueNo:#I3H7TO
fix:the setitimer signals the process to be locked at a fixed time. There is a static problem. Change-Id: I26f12289c4b13b0fd70bf0aad30507270e0ee421
This commit is contained in:
parent
81cdf0c6c3
commit
8f2e4bb8c9
|
@ -586,6 +586,7 @@ typedef struct {
|
||||||
|
|
||||||
static VOID SwtmrProc(UINTPTR tmrArg)
|
static VOID SwtmrProc(UINTPTR tmrArg)
|
||||||
{
|
{
|
||||||
|
unsigned int intSave;
|
||||||
int sig;
|
int sig;
|
||||||
pid_t pid;
|
pid_t pid;
|
||||||
siginfo_t info;
|
siginfo_t info;
|
||||||
|
@ -610,7 +611,10 @@ static VOID SwtmrProc(UINTPTR tmrArg)
|
||||||
info.si_value.sival_ptr = arg->sigev_value.sival_ptr;
|
info.si_value.sival_ptr = arg->sigev_value.sival_ptr;
|
||||||
|
|
||||||
/* Send the signal */
|
/* Send the signal */
|
||||||
|
SCHEDULER_LOCK(intSave);
|
||||||
OsDispatch(pid, &info, OS_USER_KILL_PERMISSION);
|
OsDispatch(pid, &info, OS_USER_KILL_PERMISSION);
|
||||||
|
SCHEDULER_UNLOCK(intSave);
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue