smpsignal01: Change state before sending the signal

The signal handler of the consumer might start executing
before rtems_signal_send of the producer returns.
Therefore change the state to SIG_1_SENT before sending the signal.
This commit is contained in:
Jan Sommer
2020-06-11 13:29:35 +10:00
committed by Chris Johns
parent 208cd6b794
commit 6369dafbb6
+1 -1
View File
@@ -81,10 +81,10 @@ static void signal_send(test_context *ctx, test_state new_state)
{
rtems_status_code sc;
change_state(ctx, new_state);
sc = rtems_signal_send(ctx->consumer, TEST_SIGNAL);
rtems_test_assert(sc == RTEMS_SUCCESSFUL);
change_state(ctx, new_state);
}
static void check_consumer_processor(const test_context *ctx)