tests: remove @return doc for void functions

For functions returning nothing, there is no need to document
with @return, as Doxgen complains about "documented empty
return type of ...".

Signed-off-by: Daniel Leung <daniel.leung@intel.com>
This commit is contained in:
Daniel Leung 2022-01-06 17:22:25 -08:00 committed by Anas Nashif
commit 8f7f62869a
36 changed files with 1 additions and 96 deletions

View file

@ -83,7 +83,6 @@ struct k_sem sem[3];
* *
* @brief ISR for IRQ0 * @brief ISR for IRQ0
* *
* @return N/A
*/ */
void isr0(void) void isr0(void)
@ -97,7 +96,6 @@ void isr0(void)
* *
* @brief ISR for IRQ1 * @brief ISR for IRQ1
* *
* @return N/A
*/ */
void isr1(void) void isr1(void)
@ -111,7 +109,6 @@ void isr1(void)
* *
* @brief ISR for IRQ2 * @brief ISR for IRQ2
* *
* @return N/A
*/ */
void isr2(void) void isr2(void)

View file

@ -63,8 +63,6 @@ void k_sys_fatal_error_handler(unsigned int reason, const z_arch_esf_t *esf)
* Handler to perform various actions from within an ISR context * Handler to perform various actions from within an ISR context
* *
* This routine is the ISR handler for _trigger_isr_handler(). * This routine is the ISR handler for _trigger_isr_handler().
*
* @return N/A
*/ */
void isr_handler(void) void isr_handler(void)
@ -89,7 +87,6 @@ void isr_handler(void)
* done, then control goes back to the offending instruction and an infinite * done, then control goes back to the offending instruction and an infinite
* loop of divide-by-zero errors would be created.) * loop of divide-by-zero errors would be created.)
* *
* @return N/A
*/ */
void exc_divide_error_handler(z_arch_esf_t *p_esf) void exc_divide_error_handler(z_arch_esf_t *p_esf)

View file

@ -14,7 +14,6 @@
* *
* @brief Queue transfer speed test * @brief Queue transfer speed test
* *
* @return N/A
*/ */
void queue_test(void) void queue_test(void)
{ {

View file

@ -16,7 +16,6 @@
* *
* @brief Data receive task * @brief Data receive task
* *
* @return N/A
*/ */
void dequtask(void) void dequtask(void)
{ {

View file

@ -71,7 +71,6 @@ void mailbox_put(uint32_t size, int count, uint32_t *time);
* *
* @brief Mailbox transfer speed test * @brief Mailbox transfer speed test
* *
* @return N/A
*/ */
void mailbox_test(void) void mailbox_test(void)
{ {
@ -125,7 +124,6 @@ void mailbox_test(void)
* @param count Number of data chunks. * @param count Number of data chunks.
* @param time The total time. * @param time The total time.
* *
* @return N/A
*/ */
void mailbox_put(uint32_t size, int count, uint32_t *time) void mailbox_put(uint32_t size, int count, uint32_t *time)
{ {

View file

@ -29,7 +29,6 @@ void mailbox_get(struct k_mbox *mailbox,
* *
* @brief Receive task * @brief Receive task
* *
* @return N/A
*/ */
void mailrecvtask(void) void mailrecvtask(void)
{ {

View file

@ -77,10 +77,9 @@ int kbhit(void)
* *
* @brief Prepares the test output * @brief Prepares the test output
* *
* @return N/A
*
* @param continuously Run test till the user presses the key. * @param continuously Run test till the user presses the key.
* @param autorun Expect user input. * @param autorun Expect user input.
*
*/ */
void init_output(int *continuously, int *autorun) void init_output(int *continuously, int *autorun)
{ {
@ -97,7 +96,6 @@ void init_output(int *continuously, int *autorun)
* *
* @brief Close output for the test * @brief Close output for the test
* *
* @return N/A
*/ */
void output_close(void) void output_close(void)
{ {
@ -112,7 +110,6 @@ void output_close(void)
* @brief Perform all selected benchmarks * @brief Perform all selected benchmarks
* see config.h to select or to unselect * see config.h to select or to unselect
* *
* @return N/A
*/ */
void main(void) void main(void)
{ {
@ -154,7 +151,6 @@ void main(void)
* *
* @brief Dummy test * @brief Dummy test
* *
* @return N/A
*/ */
void dummy_test(void) void dummy_test(void)
{ {

View file

@ -16,7 +16,6 @@
* *
* @brief Memory map get/free test * @brief Memory map get/free test
* *
* @return N/A
*/ */
void memorymap_test(void) void memorymap_test(void)
{ {

View file

@ -14,7 +14,6 @@
* *
* @brief Mutex lock/unlock test * @brief Mutex lock/unlock test
* *
* @return N/A
*/ */
void mutex_test(void) void mutex_test(void)
{ {

View file

@ -91,7 +91,6 @@ int pipeput(struct k_pipe *pipe, enum pipe_options
* *
* @brief Test the pipes transfer speed * @brief Test the pipes transfer speed
* *
* @return N/A
*/ */
void pipe_test(void) void pipe_test(void)
{ {

View file

@ -28,7 +28,6 @@ int pipeget(struct k_pipe *pipe, enum pipe_options option,
* *
* @brief Receive task * @brief Receive task
* *
* @return N/A
*/ */
void piperecvtask(void) void piperecvtask(void)
{ {

View file

@ -28,7 +28,6 @@ void piperecvtask(void);
* *
* @brief Main function of the task that receives data in the test * @brief Main function of the task that receives data in the test
* *
* @return N/A
*/ */
void recvtask(void *p1, void *p2, void *p3) void recvtask(void *p1, void *p2, void *p3)
{ {

View file

@ -15,7 +15,6 @@
* *
* @brief Semaphore signal speed test * @brief Semaphore signal speed test
* *
* @return N/A
*/ */
void sema_test(void) void sema_test(void)
{ {

View file

@ -17,7 +17,6 @@
* *
* @brief Receive task (Wait task) * @brief Receive task (Wait task)
* *
* @return N/A
*/ */
void waittask(void) void waittask(void)
{ {

View file

@ -50,7 +50,6 @@ K_SEM_DEFINE(sync_sema, 0, 1);
* Fiber makes all the test preparations: registers the interrupt handler, * Fiber makes all the test preparations: registers the interrupt handler,
* gets the first timestamp and invokes the software interrupt. * gets the first timestamp and invokes the software interrupt.
* *
* @return N/A
*/ */
static void thread_one(void) static void thread_one(void)
{ {

View file

@ -30,7 +30,6 @@ static timing_t timestamp_end;
* *
* The interrupt handler gets the second timestamp. * The interrupt handler gets the second timestamp.
* *
* @return N/A
*/ */
static void latency_test_isr(const void *unused) static void latency_test_isr(const void *unused)
{ {
@ -47,7 +46,6 @@ static void latency_test_isr(const void *unused)
* Function makes all the test preparations: registers the interrupt handler, * Function makes all the test preparations: registers the interrupt handler,
* gets the first timestamp and invokes the software interrupt. * gets the first timestamp and invokes the software interrupt.
* *
* @return N/A
*/ */
static void make_int(void) static void make_int(void)
{ {

View file

@ -33,7 +33,6 @@ K_SEM_DEFINE(WORKSEMA, 0, 1);
* *
* The interrupt handler gets the second timestamp. * The interrupt handler gets the second timestamp.
* *
* @return N/A
*/ */
static void latency_test_isr(const void *unused) static void latency_test_isr(const void *unused)
{ {

View file

@ -30,8 +30,6 @@ static struct k_thread y_thread;
/** /**
* @brief Helper thread for measuring thread switch latency using yield * @brief Helper thread for measuring thread switch latency using yield
*
* @return N/A
*/ */
void yielding_thread(void *arg1, void *arg2, void *arg3) void yielding_thread(void *arg1, void *arg2, void *arg3)
{ {
@ -43,8 +41,6 @@ void yielding_thread(void *arg1, void *arg2, void *arg3)
/** /**
* @brief Entry point for thread context switch using yield test * @brief Entry point for thread context switch using yield test
*
* @return N/A
*/ */
void thread_switch_yield(void) void thread_switch_yield(void)
{ {

View file

@ -17,7 +17,6 @@ static struct k_fifo sync_fifo; /* for synchronization */
* *
* @brief Initialize LIFOs for the test * @brief Initialize LIFOs for the test
* *
* @return N/A
*/ */
void lifo_test_init(void) void lifo_test_init(void)
{ {
@ -34,7 +33,6 @@ void lifo_test_init(void)
* @param par2 Number of test loops. * @param par2 Number of test loops.
* @param par3 unused * @param par3 unused
* *
* @return N/A
*/ */
void lifo_thread1(void *par1, void *par2, void *par3) void lifo_thread1(void *par1, void *par2, void *par3)
{ {
@ -73,7 +71,6 @@ void lifo_thread1(void *par1, void *par2, void *par3)
* @param par2 Number of test cycles. * @param par2 Number of test cycles.
* @param par3 unused * @param par3 unused
* *
* @return N/A
*/ */
void lifo_thread2(void *par1, void *par2, void *par3) void lifo_thread2(void *par1, void *par2, void *par3)
{ {
@ -104,7 +101,6 @@ void lifo_thread2(void *par1, void *par2, void *par3)
* @param par2 Number of test loops. * @param par2 Number of test loops.
* @param par3 unused * @param par3 unused
* *
* @return N/A
*/ */
void lifo_thread3(void *par1, void *par2, void *par3) void lifo_thread3(void *par1, void *par2, void *par3)
{ {

View file

@ -19,7 +19,6 @@ static struct k_fifo sync_fifo; /* for synchronization */
* *
* @brief Initialize FIFOs for the test * @brief Initialize FIFOs for the test
* *
* @return N/A
*/ */
void fifo_test_init(void) void fifo_test_init(void)
{ {
@ -36,7 +35,6 @@ void fifo_test_init(void)
* @param par2 Number of test loops. * @param par2 Number of test loops.
* @param par3 unused * @param par3 unused
* *
* @return N/A
*/ */
void fifo_thread1(void *par1, void *par2, void *par3) void fifo_thread1(void *par1, void *par2, void *par3)
{ {
@ -68,7 +66,6 @@ void fifo_thread1(void *par1, void *par2, void *par3)
* @param par2 Number of test cycles. * @param par2 Number of test cycles.
* @param par3 unused * @param par3 unused
* *
* @return N/A
*/ */
void fifo_thread2(void *par1, void *par2, void *par3) void fifo_thread2(void *par1, void *par2, void *par3)
{ {
@ -102,7 +99,6 @@ void fifo_thread2(void *par1, void *par2, void *par3)
* @param par2 Number of test cycles. * @param par2 Number of test cycles.
* @param par3 unused * @param par3 unused
* *
* @return N/A
*/ */
void fifo_thread3(void *par1, void *par2, void *par3) void fifo_thread3(void *par1, void *par2, void *par3)
{ {

View file

@ -15,7 +15,6 @@ struct k_sem sem2;
* *
* @brief Initialize semaphores for the test * @brief Initialize semaphores for the test
* *
* @return N/A
*/ */
void sema_test_init(void) void sema_test_init(void)
{ {
@ -32,7 +31,6 @@ void sema_test_init(void)
* @param par2 Number of test loops. * @param par2 Number of test loops.
* @param par3 Unused * @param par3 Unused
* *
* @return N/A
*/ */
void sema_thread1(void *par1, void *par2, void *par3) void sema_thread1(void *par1, void *par2, void *par3)
{ {
@ -57,7 +55,6 @@ void sema_thread1(void *par1, void *par2, void *par3)
* @param par2 Number of test cycles. * @param par2 Number of test cycles.
* @param par3 Unused * @param par3 Unused
* *
* @return N/A
*/ */
void sema_thread2(void *par1, void *par2, void *par3) void sema_thread2(void *par1, void *par2, void *par3)
{ {
@ -82,7 +79,6 @@ void sema_thread2(void *par1, void *par2, void *par3)
* @param par2 Number of test cycles. * @param par2 Number of test cycles.
* @param par3 Unused * @param par3 Unused
* *
* @return N/A
*/ */
void sema_thread3(void *par1, void *par2, void *par3) void sema_thread3(void *par1, void *par2, void *par3)
{ {

View file

@ -18,8 +18,6 @@ stack_data_t stack2[2];
* *
* @brief Initialize stacks for the test * @brief Initialize stacks for the test
* *
* @return N/A
*
*/ */
void stack_test_init(void) void stack_test_init(void)
{ {
@ -36,8 +34,6 @@ void stack_test_init(void)
* @param par2 Number of test loops. * @param par2 Number of test loops.
* @param par3 Unused * @param par3 Unused
* *
* @return N/A
*
*/ */
void stack_thread1(void *par1, void *par2, void *par3) void stack_thread1(void *par1, void *par2, void *par3)
{ {
@ -73,8 +69,6 @@ void stack_thread1(void *par1, void *par2, void *par3)
* @param par2 Number of test cycles. * @param par2 Number of test cycles.
* @param par3 Unused * @param par3 Unused
* *
* @return N/A
*
*/ */
void stack_thread2(void *par1, void *par2, void *par3) void stack_thread2(void *par1, void *par2, void *par3)
{ {
@ -105,8 +99,6 @@ void stack_thread2(void *par1, void *par2, void *par3)
* @param par2 Number of test cycles. * @param par2 Number of test cycles.
* @param par3 Unused * @param par3 Unused
* *
* @return N/A
*
*/ */
void stack_thread3(void *par1, void *par2, void *par3) void stack_thread3(void *par1, void *par2, void *par3)
{ {

View file

@ -38,7 +38,6 @@ uint32_t number_of_loops;
* *
* Routine does necessary preparations for the test to start * Routine does necessary preparations for the test to start
* *
* @return N/A
*/ */
void begin_test(void) void begin_test(void)
{ {
@ -94,7 +93,6 @@ int check_result(int i, uint32_t t)
* *
* @param continuously Run test till the user presses the key. * @param continuously Run test till the user presses the key.
* *
* @return N/A
*/ */
void init_output(int *continuously) void init_output(int *continuously)
@ -112,7 +110,6 @@ void init_output(int *continuously)
* *
* @brief Close output for the test * @brief Close output for the test
* *
* @return N/A
*/ */
void output_close(void) void output_close(void)
{ {
@ -122,7 +119,6 @@ void output_close(void)
* *
* @brief Perform all selected benchmarks * @brief Perform all selected benchmarks
* *
* @return N/A
*/ */
void main(void) void main(void)
{ {

View file

@ -24,8 +24,6 @@
* *
* @brief Regression test's entry point * @brief Regression test's entry point
* *
*
* @return N/A
*/ */
void test_rand32(void) void test_rand32(void)

View file

@ -219,8 +219,6 @@ static void test_kernel_cpu_idle_atomic(void);
* *
* This routine is the ISR handler for isr_handler_trigger(). It performs * This routine is the ISR handler for isr_handler_trigger(). It performs
* the command requested in <isr_info.command>. * the command requested in <isr_info.command>.
*
* @return N/A
*/ */
static void isr_handler(const void *data) static void isr_handler(const void *data)
{ {
@ -285,8 +283,6 @@ int irq_lock_wrapper(int unused)
/** /**
* @brief A wrapper for irq_unlock() * @brief A wrapper for irq_unlock()
*
* @return N/A
*/ */
void irq_unlock_wrapper(int imask) void irq_unlock_wrapper(int imask)
{ {
@ -306,8 +302,6 @@ int irq_disable_wrapper(int irq)
/** /**
* @brief A wrapper for irq_enable() * @brief A wrapper for irq_enable()
*
* @return N/A
*/ */
void irq_enable_wrapper(int irq) void irq_enable_wrapper(int irq)
{ {
@ -760,7 +754,6 @@ static void _test_kernel_thread(k_tid_t _thread_id)
* @param arg2 unused * @param arg2 unused
* @param arg3 unused * @param arg3 unused
* *
* @return N/A
*/ */
static void thread_helper(void *arg1, void *arg2, void *arg3) static void thread_helper(void *arg1, void *arg2, void *arg3)

View file

@ -34,7 +34,6 @@
* _load_all_float_registers() and _store_all_float_registers() agree * _load_all_float_registers() and _store_all_float_registers() agree
* on the format. * on the format.
* *
* @return N/A
*/ */
static inline void _load_all_float_registers(struct fp_register_set *regs) static inline void _load_all_float_registers(struct fp_register_set *regs)
{ {
@ -67,7 +66,6 @@ static inline void _load_all_float_registers(struct fp_register_set *regs)
* _load_all_float_registers() occurred to load all the floating point * _load_all_float_registers() occurred to load all the floating point
* registers from a memory buffer. * registers from a memory buffer.
* *
* @return N/A
*/ */
static inline void _store_all_float_registers(struct fp_register_set *regs) static inline void _store_all_float_registers(struct fp_register_set *regs)
@ -102,7 +100,6 @@ static inline void _store_all_float_registers(struct fp_register_set *regs)
* that pends and triggers a co-operative context switch to a low priority * that pends and triggers a co-operative context switch to a low priority
* thread. * thread.
* *
* @return N/A
*/ */
static inline void _load_then_store_all_float_registers(struct fp_register_set static inline void _load_then_store_all_float_registers(struct fp_register_set

View file

@ -30,7 +30,6 @@
* _load_all_float_registers() and _store_all_float_registers() agree * _load_all_float_registers() and _store_all_float_registers() agree
* on the format. * on the format.
* *
* @return N/A
*/ */
static inline void _load_all_float_registers(struct fp_register_set *regs) static inline void _load_all_float_registers(struct fp_register_set *regs)
{ {
@ -65,7 +64,6 @@ static inline void _load_all_float_registers(struct fp_register_set *regs)
* _load_all_float_registers() occurred to load all the floating point * _load_all_float_registers() occurred to load all the floating point
* registers from a memory buffer. * registers from a memory buffer.
* *
* @return N/A
*/ */
static inline void _store_all_float_registers(struct fp_register_set *regs) static inline void _store_all_float_registers(struct fp_register_set *regs)
@ -104,7 +102,6 @@ static inline void _store_all_float_registers(struct fp_register_set *regs)
* that pends and triggers a co-operative context switch to a low priority * that pends and triggers a co-operative context switch to a low priority
* thread. * thread.
* *
* @return N/A
*/ */
static inline void _load_then_store_all_float_registers( static inline void _load_then_store_all_float_registers(

View file

@ -34,7 +34,6 @@
* _load_all_float_registers() and _store_all_float_registers() agree * _load_all_float_registers() and _store_all_float_registers() agree
* on the format. * on the format.
* *
* @return N/A
*/ */
static inline void _load_all_float_registers(struct fp_register_set *regs) static inline void _load_all_float_registers(struct fp_register_set *regs)
@ -55,7 +54,6 @@ static inline void _load_all_float_registers(struct fp_register_set *regs)
* _load_all_float_registers() occurred to load all the floating point * _load_all_float_registers() occurred to load all the floating point
* registers from a memory buffer. * registers from a memory buffer.
* *
* @return N/A
*/ */
static inline void _store_all_float_registers(struct fp_register_set *regs) static inline void _store_all_float_registers(struct fp_register_set *regs)
@ -79,7 +77,6 @@ static inline void _store_all_float_registers(struct fp_register_set *regs)
* that pends and triggers a co-operative context switch to a low priority * that pends and triggers a co-operative context switch to a low priority
* thread. * thread.
* *
* @return N/A
*/ */
static inline void _load_then_store_all_float_registers(struct fp_register_set static inline void _load_then_store_all_float_registers(struct fp_register_set

View file

@ -44,7 +44,6 @@
* _load_all_float_registers() and _store_all_float_registers() agree * _load_all_float_registers() and _store_all_float_registers() agree
* on the format. * on the format.
* *
* @return N/A
*/ */
static inline void _load_all_float_registers(struct fp_register_set *regs) static inline void _load_all_float_registers(struct fp_register_set *regs)
{ {
@ -129,7 +128,6 @@ static inline void _load_all_float_registers(struct fp_register_set *regs)
* _load_all_float_registers() occurred to load all the floating point * _load_all_float_registers() occurred to load all the floating point
* registers from a memory buffer. * registers from a memory buffer.
* *
* @return N/A
*/ */
static inline void _store_all_float_registers(struct fp_register_set *regs) static inline void _store_all_float_registers(struct fp_register_set *regs)
@ -217,7 +215,6 @@ static inline void _store_all_float_registers(struct fp_register_set *regs)
* that pends and triggers a co-operative context switch to a low priority * that pends and triggers a co-operative context switch to a low priority
* thread. * thread.
* *
* @return N/A
*/ */
static inline void _load_then_store_all_float_registers(struct fp_register_set static inline void _load_then_store_all_float_registers(struct fp_register_set

View file

@ -34,7 +34,6 @@
* _load_all_float_registers(), _store_all_float_registers() and * _load_all_float_registers(), _store_all_float_registers() and
* _load_then_store_all_float_registers() agree on the format. * _load_then_store_all_float_registers() agree on the format.
* *
* @return N/A
*/ */
static inline void _load_all_float_registers(struct fp_register_set *regs) static inline void _load_all_float_registers(struct fp_register_set *regs)
@ -78,7 +77,6 @@ static inline void _load_all_float_registers(struct fp_register_set *regs)
* floating point operations was also co-operatively switched out and simply * floating point operations was also co-operatively switched out and simply
* inherits the existing x87 FPU state (expecting the stack to be empty). * inherits the existing x87 FPU state (expecting the stack to be empty).
* *
* @return N/A
*/ */
static inline void static inline void
@ -128,7 +126,6 @@ _load_then_store_all_float_registers(struct fp_register_set *regs)
* _load_all_float_registers() occurred to load all the floating point * _load_all_float_registers() occurred to load all the floating point
* registers from a memory buffer. * registers from a memory buffer.
* *
* @return N/A
*/ */
static inline void _store_all_float_registers(struct fp_register_set *regs) static inline void _store_all_float_registers(struct fp_register_set *regs)

View file

@ -34,7 +34,6 @@ void check_input(const char *name, const char *input);
* *
* @param name caller identification string * @param name caller identification string
* *
* @return N/A
*/ */
void print_loop(const char *name) void print_loop(const char *name)
@ -59,7 +58,6 @@ void print_loop(const char *name)
* When stack protection feature is not enabled, the system crashes with * When stack protection feature is not enabled, the system crashes with
* error like: Trying to execute code outside RAM or ROM. * error like: Trying to execute code outside RAM or ROM.
* *
* @return N/A
*/ */
void check_input(const char *name, const char *input) void check_input(const char *name, const char *input)
@ -78,7 +76,6 @@ void check_input(const char *name, const char *input)
* feature is enabled. Hence it will not execute the print_loop function * feature is enabled. Hence it will not execute the print_loop function
* and will not set ret to TC_FAIL. * and will not set ret to TC_FAIL.
* *
* @return N/A
*/ */
void alternate_thread(void) void alternate_thread(void)
{ {

View file

@ -54,7 +54,6 @@ K_MEM_SLAB_DEFINE(map_lgblks, 1024, NUMBLOCKS, 4);
* SEM_REGRESDONE and SEM_HELPERDONE to synchronize between different parts * SEM_REGRESDONE and SEM_HELPERDONE to synchronize between different parts
* of the test. * of the test.
* *
* @return N/A
*/ */
void helper_thread(void) void helper_thread(void)
@ -122,7 +121,6 @@ void helper_thread(void)
* *
* @param p pointer to pointer of allocated blocks * @param p pointer to pointer of allocated blocks
* *
* @return TC_PASS, TC_FAIL
*/ */
void test_slab_get_all_blocks(void **p) void test_slab_get_all_blocks(void **p)
@ -165,7 +163,6 @@ void test_slab_get_all_blocks(void **p)
* *
* @param p pointer to pointer of allocated blocks * @param p pointer to pointer of allocated blocks
* *
* @return TC_PASS, TC_FAIL
*/ */
void test_slab_free_all_blocks(void **p) void test_slab_free_all_blocks(void **p)

View file

@ -73,7 +73,6 @@ extern void test_mutex_multithread_competition(void);
* *
* thread_05 - * thread_05 -
* *
* @return N/A
*/ */
void thread_05(void) void thread_05(void)
@ -96,7 +95,6 @@ void thread_05(void)
* *
* thread_06 - * thread_06 -
* *
* @return N/A
*/ */
void thread_06(void) void thread_06(void)
@ -128,7 +126,6 @@ void thread_06(void)
* *
* thread_07 - * thread_07 -
* *
* @return N/A
*/ */
void thread_07(void) void thread_07(void)
@ -158,7 +155,6 @@ void thread_07(void)
* *
* thread_08 - * thread_08 -
* *
* @return N/A
*/ */
void thread_08(void) void thread_08(void)
@ -182,7 +178,6 @@ void thread_08(void)
* *
* thread_09 - * thread_09 -
* *
* @return N/A
*/ */
void thread_09(void) void thread_09(void)
@ -215,7 +210,6 @@ void thread_09(void)
* *
* thread_11 - * thread_11 -
* *
* @return N/A
*/ */
void thread_11(void) void thread_11(void)
@ -243,7 +237,6 @@ extern void thread_12(void);
* This thread will lock on mutex_1, mutex_2, mutex_3 and mutex_4. It later * This thread will lock on mutex_1, mutex_2, mutex_3 and mutex_4. It later
* recursively locks private_mutex, releases it, then re-locks it. * recursively locks private_mutex, releases it, then re-locks it.
* *
* @return N/A
*/ */
void test_mutex(void) void test_mutex(void)

View file

@ -27,7 +27,6 @@ extern struct sys_mutex private_mutex;
* *
* thread_12 - thread that participates in recursive locking tests * thread_12 - thread that participates in recursive locking tests
* *
* @return N/A
*/ */
void thread_12(void) void thread_12(void)

View file

@ -32,8 +32,6 @@ static struct k_thread *main_thread;
* *
* @param unused of type k_work to make handler function accepted * @param unused of type k_work to make handler function accepted
* by k_work_init * by k_work_init
*
* @return N/A
*/ */
static void common_work_handler(struct k_work_user *unused) static void common_work_handler(struct k_work_user *unused)
{ {

View file

@ -943,7 +943,6 @@ void test_EOF(void)
* *
* @brief Test entry point * @brief Test entry point
* *
* @return N/A
*/ */
void test_main(void) void test_main(void)