Files
rk35xx-android14/external/ltp/include/tst_timer_test.h
T
hmz007 36ed224bac Rockchip Anroid14_SDK 20240628-rkr5 (2556df1a)
Signed-off-by: hmz007 <hmz007@gmail.com>
Change-Id: Ib87fdbe7a0be7dc961af3500fe9ea4589a127f9f
2024-10-29 18:12:02 +08:00

46 lines
915 B
C

// SPDX-License-Identifier: GPL-2.0-or-later
/*
* Copyright (c) 2017 Cyril Hrubis <chrubis@suse.cz>
*/
/*
Timer measuring library.
The test is supposed to define sampling function and set it in the tst_test
structure the rest of the work is then done by the library.
int sample(int clk_id, long long usec)
{
// Any setup done here
tst_timer_start(clk_id);
// Call that is being measured sleeps for usec
tst_timer_stop();
tst_timer_sample();
// Any cleanup done here
// Non-zero return exits the test
}
struct tst_test test = {
.scall = "syscall_name()",
.sample = sample,
};
*/
#ifndef TST_TIMER_TEST__
#define TST_TIMER_TEST__
#include "tst_test.h"
#include "tst_timer.h"
void tst_timer_sample(void);
# ifdef TST_NO_DEFAULT_MAIN
struct tst_test *tst_timer_test_setup(struct tst_test *test);
# endif /* TST_NO_DEFAULT_MAIN */
#endif /* TST_TIMER_TEST__ */