jemalloc-sys 0.5.4+5.3.0-patched

Rust FFI bindings to jemalloc
Documentation
1
2
3
4
5
6
7
8
9
10
11
/* Simple timer, for use in benchmark reporting. */

typedef struct {
	nstime_t t0;
	nstime_t t1;
} timedelta_t;

void	timer_start(timedelta_t *timer);
void	timer_stop(timedelta_t *timer);
uint64_t	timer_usec(const timedelta_t *timer);
void	timer_ratio(timedelta_t *a, timedelta_t *b, char *buf, size_t buflen);