Skip to content

Commit

Permalink
Merge pull request #7988 from lorjala/unittests_fix
Browse files Browse the repository at this point in the history
Unittesting: Update mutex stub
  • Loading branch information
0xc0170 committed Sep 6, 2018
2 parents 201ec14 + 4b04227 commit 7a8e849
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion UNITTESTS/stubs/Mutex_stub.cpp
Expand Up @@ -27,7 +27,12 @@ rtos::Mutex::~Mutex()
return;
}

osStatus rtos::Mutex::lock(unsigned int)
osStatus rtos::Mutex::lock(void)
{
return osOK;
}

osStatus rtos::Mutex::lock(uint32_t millisec)
{
return osOK;
}
Expand Down

0 comments on commit 7a8e849

Please sign in to comment.