mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-13 04:06:50 +07:00
11 lines
233 B
C
11 lines
233 B
C
|
#ifndef PERF_UNIT_H
|
||
|
#define PERF_UNIT_H
|
||
|
|
||
|
#include <stddef.h>
|
||
|
#include <linux/types.h>
|
||
|
|
||
|
unsigned long convert_unit(unsigned long value, char *unit);
|
||
|
int unit_number__scnprintf(char *buf, size_t size, u64 n);
|
||
|
|
||
|
#endif /* PERF_UNIT_H */
|