Home
last modified time | relevance | path

Searched refs:usr_fp_thread (Results 1 – 1 of 1) sorted by relevance

/Zephyr-latest/tests/kernel/fpu_sharing/float_disable/src/
Dk_float_disable.c26 struct k_thread usr_fp_thread; variable
75 k_thread_create(&usr_fp_thread, usr_fp_thread_stack, STACKSIZE, in ZTEST()
85 (usr_fp_thread.base.user_options & K_FP_OPTS) != 0, in ZTEST()
87 usr_fp_thread.base.user_options); in ZTEST()
91 zassert_true((k_float_disable(&usr_fp_thread) == -EINVAL), in ZTEST()
96 (usr_fp_thread.base.user_options & K_FP_OPTS) != 0, in ZTEST()
99 zassert_true((k_float_disable(&usr_fp_thread) == 0), in ZTEST()
104 (usr_fp_thread.base.user_options & K_FP_OPTS) == 0, in ZTEST()
106 usr_fp_thread.base.user_options); in ZTEST()
109 zassert_true((k_float_disable(&usr_fp_thread) == -ENOTSUP), in ZTEST()
[all …]