zephyr/tests/arch/arm
James Harris b10428163a kernel: sem: add K_SEM_MAX_LIMIT
Currently there is no way to distinguish between a caller
explicitly asking for a semaphore with a limit that
happens to be `UINT_MAX` and a semaphore that just
has a limit "as large as possible".

Add `K_SEM_MAX_LIMIT`, currently defined to `UINT_MAX`, and akin
to `K_FOREVER` versus just passing some very large wait time.

In addition, the `k_sem_*` APIs were type-confused, where
the internal data structure was `uint32_t`, but the APIs took
and returned `unsigned int`. This changes the underlying data
structure to also use `unsigned int`, as changing the APIs
would be a (potentially) breaking change.

These changes are backwards-compatible, but it is strongly suggested
to take a quick scan for `k_sem_init` and `K_SEM_DEFINE` calls with
`UINT_MAX` (or `UINT32_MAX`) and replace them with `K_SEM_MAX_LIMIT`
where appropriate.

Signed-off-by: James Harris <james.harris@intel.com>
2021-03-05 08:13:53 -06:00
..
arm_interrupt tests: arm: increase idle thread stack size for no-opt test-cases 2021-03-05 15:03:24 +03:00
arm_irq_advanced_features tests: arch: arm: do not build/run test suites for _ns boards 2020-09-15 18:04:11 -05:00
arm_irq_vector_table kernel: sem: add K_SEM_MAX_LIMIT 2021-03-05 08:13:53 -06:00
arm_no_multithreading arch: arm: cortex-m: enable IRQs before main() in single-thread mode 2020-09-29 10:47:43 +02:00
arm_ramfunc sanitycheck: inclusive language 2020-08-27 07:04:07 -04:00
arm_runtime_nmi sanitycheck: inclusive language 2020-08-27 07:04:07 -04:00
arm_sw_vector_relay sanitycheck: inclusive language 2020-08-27 07:04:07 -04:00
arm_thread_swap tests: arm: increase idle thread stack size for no-opt test-cases 2021-03-05 15:03:24 +03:00
arm_tz_wrap_func arch: arm: cortex_m: Add tz_ns.h 2020-09-04 11:58:41 +02:00