zephyr/tests/benchmarks/app_kernel/src/receiver.c
Daniel Leung 8f7f62869a 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>
2022-01-12 16:02:16 -05:00

52 lines
988 B
C

/* receiver.c */
/*
* Copyright (c) 1997-2010,2013-2014 Wind River Systems, Inc.
*
* SPDX-License-Identifier: Apache-2.0
*/
/*
* File Naming information.
* ------------------------
* Files that end with:
* _B : Is a file that contains a benchmark function
* _R : Is a file that contains the receiver task
* of a benchmark function
*/
#include "receiver.h"
char data_recv[MESSAGE_SIZE] = { 0 };
void dequtask(void);
void waittask(void);
void mailrecvtask(void);
void piperecvtask(void);
/**
*
* @brief Main function of the task that receives data in the test
*
*/
void recvtask(void *p1, void *p2, void *p3)
{
/* order must be compatible with master.c ! */
#ifdef FIFO_BENCH
k_sem_take(&STARTRCV, K_FOREVER);
dequtask();
#endif
#ifdef SEMA_BENCH
k_sem_take(&STARTRCV, K_FOREVER);
waittask();
#endif
#ifdef MAILBOX_BENCH
k_sem_take(&STARTRCV, K_FOREVER);
mailrecvtask();
#endif
#ifdef PIPE_BENCH
k_sem_take(&STARTRCV, K_FOREVER);
piperecvtask();
#endif
}