#include #include #include "include/os.h" #include "xf86_compat.h" #undef xf86Msg #undef xf86MsgVerb /* * this is specifically for NVidia proprietary driver: they're again lagging * behind a year, doing at least some minimal cleanup of their code base. * All attempts to get in direct contact with them have failed. */ _X_EXPORT void xf86Msg(MessageType type, const char *format, ...) _X_ATTRIBUTE_PRINTF(2, 3); void xf86Msg(MessageType type, const char *format, ...) { xf86NVidiaBugInternalFunc("xf86Msg()"); va_list ap; va_start(ap, format); LogVMessageVerb(type, 1, format, ap); va_end(ap); } /* * this is only needed for the 570.x nvidia drivers */ _X_EXPORT void xf86MsgVerb(MessageType type, int verb, const char *format, ...) _X_ATTRIBUTE_PRINTF(3, 4); void xf86MsgVerb(MessageType type, int verb, const char *format, ...) { static char reportxf86MsgVerb = 1; if (reportxf86MsgVerb) { xf86NVidiaBugInternalFunc("xf86MsgVerb()"); reportxf86MsgVerb = 0; } va_list ap; va_start(ap, format); LogVMessageVerb(type, verb, format, ap); va_end(ap); }