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

testing/ostest/wdog.c: remove a set-only global #2864

Merged
merged 1 commit into from
Nov 22, 2024
Merged
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: 0 additions & 2 deletions testing/ostest/signest.c
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@ static sem_t g_sem_signal_finish;
static volatile bool g_waiter_running;
static volatile bool g_interferer_running;
static volatile bool g_done;
static volatile int g_nestlevel;

static volatile int g_even_handled;
static volatile int g_odd_handled;
Expand Down Expand Up @@ -259,7 +258,6 @@ void signest_test(void)
g_waiter_running = false;
g_interferer_running = false;
g_done = false;
g_nestlevel = 0;

even_signals = 0;
odd_signals = 0;
Expand Down
Loading