Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix #779, Change global vars to not be hidden by local vars. #794

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/tests/bin-sem-test/bin-sem-test.c
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ int counter = 0;
*
* On RTEMS even a call to BinSemGetInfo has very ill effects.
*/
void TimerFunction(osal_id_t timer_id)
void TimerFunction(osal_id_t local_timer_id)
{
int32 status;

Expand Down
2 changes: 1 addition & 1 deletion src/tests/bin-sem-timeout-test/bin-sem-timeout-test.c
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ int counter = 0;
*
* On RTEMS even a call to BinSemGetInfo has very ill effects.
*/
void TimerFunction(osal_id_t timer_id)
void TimerFunction(osal_id_t local_timer_id)
{
int32 status;

Expand Down
2 changes: 1 addition & 1 deletion src/tests/queue-test/queue-test.c
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ uint32 timer_start = 10000;
uint32 timer_interval = 100000; /* 1000 = 1000 hz, 10000 == 100 hz */
uint32 timer_accuracy;

void TimerFunction(osal_id_t timer_id)
void TimerFunction(osal_id_t local_timer_id)
{
timer_counter++;
}
Expand Down