[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 01/39] docs/spin: replace assert(0) with g_assert_not_reached()
From: |
Pierrick Bouvier |
Subject: |
[PATCH 01/39] docs/spin: replace assert(0) with g_assert_not_reached() |
Date: |
Tue, 10 Sep 2024 15:15:28 -0700 |
Signed-off-by: Pierrick Bouvier <pierrick.bouvier@linaro.org>
---
docs/spin/aio_notify_accept.promela | 6 +++---
docs/spin/aio_notify_bug.promela | 6 +++---
2 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/docs/spin/aio_notify_accept.promela
b/docs/spin/aio_notify_accept.promela
index 9cef2c955dd..f929d303281 100644
--- a/docs/spin/aio_notify_accept.promela
+++ b/docs/spin/aio_notify_accept.promela
@@ -118,7 +118,7 @@ accept_if_req_not_eventually_false:
if
:: req -> goto accept_if_req_not_eventually_false;
fi;
- assert(0);
+ g_assert_not_reached();
}
#else
@@ -141,12 +141,12 @@ accept_if_event_not_eventually_true:
:: !event && notifier_done -> do :: true -> skip; od;
:: !event && !notifier_done -> goto
accept_if_event_not_eventually_true;
fi;
- assert(0);
+ g_assert_not_reached();
accept_if_event_not_eventually_false:
if
:: event -> goto accept_if_event_not_eventually_false;
fi;
- assert(0);
+ g_assert_not_reached();
}
#endif
diff --git a/docs/spin/aio_notify_bug.promela b/docs/spin/aio_notify_bug.promela
index b3bfca1ca4f..ce6f5177ed5 100644
--- a/docs/spin/aio_notify_bug.promela
+++ b/docs/spin/aio_notify_bug.promela
@@ -106,7 +106,7 @@ accept_if_req_not_eventually_false:
if
:: req -> goto accept_if_req_not_eventually_false;
fi;
- assert(0);
+ g_assert_not_reached();
}
#else
@@ -129,12 +129,12 @@ accept_if_event_not_eventually_true:
:: !event && notifier_done -> do :: true -> skip; od;
:: !event && !notifier_done -> goto
accept_if_event_not_eventually_true;
fi;
- assert(0);
+ g_assert_not_reached();
accept_if_event_not_eventually_false:
if
:: event -> goto accept_if_event_not_eventually_false;
fi;
- assert(0);
+ g_assert_not_reached();
}
#endif
--
2.39.2
- [PATCH 00/39] Use g_assert_not_reached instead of (g_)assert(0, false), Pierrick Bouvier, 2024/09/10
- [PATCH 02/39] hw/acpi: replace assert(0) with g_assert_not_reached(), Pierrick Bouvier, 2024/09/10
- [PATCH 01/39] docs/spin: replace assert(0) with g_assert_not_reached(),
Pierrick Bouvier <=
- Re: [PATCH 01/39] docs/spin: replace assert(0) with g_assert_not_reached(), Eric Blake, 2024/09/11
- Re: [PATCH 01/39] docs/spin: replace assert(0) with g_assert_not_reached(), Eric Blake, 2024/09/11
- Re: [PATCH 01/39] docs/spin: replace assert(0) with g_assert_not_reached(), Maciej S. Szmigiero, 2024/09/11
- Re: [PATCH 01/39] docs/spin: replace assert(0) with g_assert_not_reached(), Richard W.M. Jones, 2024/09/11
- Re: [PATCH 01/39] docs/spin: replace assert(0) with g_assert_not_reached(), Pierrick Bouvier, 2024/09/11
- Re: [PATCH 01/39] docs/spin: replace assert(0) with g_assert_not_reached(), Richard Henderson, 2024/09/11
- Re: [PATCH 01/39] docs/spin: replace assert(0) with g_assert_not_reached(), Thomas Huth, 2024/09/11
- Re: [PATCH 01/39] docs/spin: replace assert(0) with g_assert_not_reached(), Pierrick Bouvier, 2024/09/11
- Re: [PATCH 01/39] docs/spin: replace assert(0) with g_assert_not_reached(), Pierrick Bouvier, 2024/09/11
[PATCH 03/39] hw/arm: replace assert(0) with g_assert_not_reached(), Pierrick Bouvier, 2024/09/10