mirror of
https://github.com/hermitcore/libhermit.git
synced 2025-03-09 00:00:03 +01:00
31 lines
642 B
C
31 lines
642 B
C
/*
|
|
* =====================================================================================
|
|
*
|
|
* 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__
|