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.
2 parents 701ab24 + 746571a commit 6f160a0Copy full SHA for 6f160a0
iop/system/threadman/src/thbase.c
@@ -763,7 +763,7 @@ int WakeupThread(int thid)
763
return thread_start(thread, state);
764
}
765
766
- thread->wakeup_count--;
+ thread->wakeup_count++;
767
768
CpuResumeIntr(state);
769
iop/system/threadman/src/thmsgbx.c
@@ -15,7 +15,7 @@ int CreateMbx(iop_mbx_t *mbx_param)
15
return KE_ILLEGAL_CONTEXT;
16
17
18
- if (mbx_param->attr & ~(MBA_MSFIFO | MBA_THPRI | MBA_MSFIFO | MBA_MSPRI)) {
+ if (mbx_param->attr & ~(MBA_THFIFO | MBA_THPRI | MBA_MSFIFO | MBA_MSPRI)) {
19
return KE_ILLEGAL_ATTR;
20
21
0 commit comments