RTX5: uVisor: Remove static from svcRtxKernelUnlock/Lock to support uVisor

pull/6273/head
Bartek Szatkowski 2018-05-11 12:34:44 +02:00
parent 2f7a841e0e
commit a1fb51c283
1 changed files with 2 additions and 2 deletions

View File

@ -293,7 +293,7 @@ static osStatus_t svcRtxKernelStart (void) {
/// Lock the RTOS Kernel scheduler.
/// \note API identical to osKernelLock
static int32_t svcRtxKernelLock (void) {
int32_t svcRtxKernelLock (void) {
int32_t lock;
switch (osRtxInfo.kernel.state) {
@ -316,7 +316,7 @@ static int32_t svcRtxKernelLock (void) {
/// Unlock the RTOS Kernel scheduler.
/// \note API identical to osKernelUnlock
static int32_t svcRtxKernelUnlock (void) {
int32_t svcRtxKernelUnlock (void) {
int32_t lock;
switch (osRtxInfo.kernel.state) {