1
0
Fork 0
mirror of https://github.com/hermitcore/libhermit.git synced 2025-03-09 00:00:03 +01:00
libhermit/usr/benchmarks/hist.h

32 lines
642 B
C
Raw Permalink Normal View History

/*
* =====================================================================================
*
* Filename: hist.h
*
* Description:
*
* Version: 1.0
* Created: 26.07.2014 20:02:48
* Revision: none
* Compiler: gcc
*
* Author: Georg Wassen (gw) (),
* Company:
*
* =====================================================================================
*/
#ifndef __HIST_H__
#define __HIST_H__
#include "opt.h"
#include <stdint.h>
uint32_t *hist_alloc(const struct opt *opt);
int hist_reset(void);
void hist_add(uint64_t t);
int hist_print(void);
#endif // __HIST_H__