netbsd: Add dyanmicMeters stubs to fix the build

Signed-off-by: Nia Alarie <nia@NetBSD.org>
This commit is contained in:
nia
2021-07-13 17:46:04 +02:00
committed by BenBE
parent e7aaf79166
commit 67ca214cbe
3 changed files with 11 additions and 3 deletions

View File

@ -94,4 +94,12 @@ static inline void Platform_gettime_monotonic(uint64_t* msec) {
Generic_gettime_monotonic(msec);
}
static inline Hashtable* Platform_dynamicMeters(void) { return NULL; }
static inline void Platform_dynamicMeterInit(ATTR_UNUSED Meter* meter) { }
static inline void Platform_dynamicMeterUpdateValues(ATTR_UNUSED Meter* meter) { }
static inline void Platform_dynamicMeterDisplay(ATTR_UNUSED const Meter* meter, ATTR_UNUSED RichString* out) { }
#endif