Implement the rivatimer and cyclical logging from my main NV3 branch so that we can get it reviewed and merged.

This commit is contained in:
starfrost013
2025-01-12 15:21:31 +00:00
parent 226537145d
commit 204b24022f
4 changed files with 502 additions and 13 deletions

View File

@@ -187,8 +187,9 @@ extern int config_changed; /* config has changed */
/* Function prototypes. */
#ifdef HAVE_STDARG_H
extern void pclog_ex(const char *fmt, va_list);
extern void fatal_ex(const char *fmt, va_list);
extern void pclog_ex(const char *fmt, va_list ap);
extern void fatal_ex(const char *fmt, va_list ap);
extern void pclog_ex_cyclic(const char* fmt, va_list ap);
#endif
extern void pclog_toggle_suppr(void);
#ifdef _MSC_VER