mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
86 lines
1.7 KiB
C
86 lines
1.7 KiB
C
/*
|
|
* Copyright (C) 2017 Kaspar Schleiser <kaspar@schleiser.de>
|
|
*
|
|
* This file is subject to the terms and conditions of the GNU Lesser
|
|
* General Public License v2.1. See the file LICENSE in the top level
|
|
* directory for more details.
|
|
*/
|
|
|
|
/**
|
|
* @ingroup tests
|
|
* @{
|
|
*
|
|
* @file
|
|
* @brief Thread flags benchmark test application
|
|
*
|
|
* @author Kaspar Schleiser <kaspar@schleiser.de>
|
|
*
|
|
* @}
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include "macros/units.h"
|
|
#include "clk.h"
|
|
#include "thread.h"
|
|
|
|
#include "thread_flags.h"
|
|
#include "xtimer.h"
|
|
|
|
#ifndef TEST_DURATION
|
|
#define TEST_DURATION (1000000U)
|
|
#endif
|
|
|
|
volatile unsigned _flag = 0;
|
|
static char _stack[THREAD_STACKSIZE_MAIN];
|
|
|
|
static void _timer_callback(void*arg)
|
|
{
|
|
(void)arg;
|
|
|
|
_flag = 1;
|
|
}
|
|
|
|
static void *_second_thread(void *arg)
|
|
{
|
|
(void)arg;
|
|
|
|
while(1) {
|
|
thread_flags_wait_any(0x0 - 1);
|
|
}
|
|
|
|
return NULL;
|
|
}
|
|
|
|
int main(void)
|
|
{
|
|
printf("main starting\n");
|
|
|
|
kernel_pid_t other = thread_create(_stack,
|
|
sizeof(_stack),
|
|
(THREAD_PRIORITY_MAIN - 1),
|
|
0,
|
|
_second_thread,
|
|
NULL,
|
|
"second_thread");
|
|
|
|
thread_t *tcb = thread_get(other);
|
|
|
|
xtimer_t timer;
|
|
timer.callback = _timer_callback;
|
|
|
|
uint32_t n = 0;
|
|
|
|
xtimer_set(&timer, TEST_DURATION);
|
|
while(!_flag) {
|
|
thread_flags_set(tcb, 0x1);
|
|
n++;
|
|
}
|
|
|
|
printf("{ \"result\" : %"PRIu32, n);
|
|
printf(", \"ticks\" : %"PRIu32,
|
|
(uint32_t)((TEST_DURATION/US_PER_MS) * (coreclk()/KHZ(1)))/n);
|
|
puts(" }");
|
|
|
|
return 0;
|
|
}
|