Searched refs:common_work (Results 1 – 1 of 1) sorted by relevance
48 static struct k_work common_work; variable217 k_work_init(&common_work, counter_handler); in ZTEST()218 zassert_equal(k_work_busy_get(&common_work), 0); in ZTEST()220 rc = k_work_submit_to_queue(¬_start_queue, &common_work); in ZTEST()277 k_work_init(&common_work, counter_handler); in ZTEST()278 zassert_equal(k_work_busy_get(&common_work), 0); in ZTEST()280 rc = k_work_submit_to_queue(NULL, &common_work); in ZTEST()291 k_work_init(&common_work, counter_handler); in ZTEST()292 zassert_equal(k_work_busy_get(&common_work), 0); in ZTEST()293 zassert_equal(k_work_is_pending(&common_work), false); in ZTEST()[all …]