stdio.h revision e64031e20c39650a7bc902a3e1aba613b9415dee
/* $Id$ */
/** @file
* Our minimal stdio
*/
/*
* Copyright (C) 2006-2007 Oracle Corporation
*
* This file is part of VirtualBox Open Source Edition (OSE), as
* available from http://www.virtualbox.org. This file is free software;
* you can redistribute it and/or modify it under the terms of the GNU
* General Public License (GPL) as published by the Free Software
* Foundation, in version 2 as it comes in the "COPYING" file of the
* VirtualBox OSE distribution. VirtualBox OSE is distributed in the
* hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
*/
#ifndef ___Sun_stdio_h
#define ___Sun_stdio_h
#ifndef LOG_GROUP
# define UNDO_LOG_GROUP
#endif
#include <VBox/log.h>
#ifdef UNDO_LOG_GROUP
# undef UNDO_LOG_GROUP
# undef LOG_GROUP
#endif
#ifndef LOG_USE_C99
# error "LOG_USE_C99 isn't defined."
#endif
RT_C_DECLS_BEGIN
typedef struct FILE FILE;
#if defined(RT_OS_SOLARIS)
/** @todo Check solaris' floatingpoint.h as to why we do this */
# define _FILEDEFED
#endif
DECLINLINE(int) fprintf(FILE *ignored, const char *pszFormat, ...)
{
/** @todo We don't support wrapping calls taking a va_list yet. It's not worth it yet,
* since there are only a couple of cases where this fprintf implementation is used.
* (The macro below will deal with the majority of the fprintf calls.) */
#if 0 /*def LOG_ENABLED*/
if (LogIsItEnabled(NULL, 0, LOG_GROUP_REM_PRINTF))
{
va_list va;
va_start(va, pszFormat);
RTLogLoggerExV(NULL, 0, LOG_GROUP_REM_PRINTF, pszFormat, va);
va_end(va);
}
#endif
return 0;
}
#define fflush(file) RTLogFlush(NULL)
#define printf(...) LogIt(LOG_INSTANCE, 0, LOG_GROUP_REM_PRINTF, (__VA_ARGS__))
#define fprintf(logfile, ...) LogIt(LOG_INSTANCE, 0, LOG_GROUP_REM_PRINTF, (__VA_ARGS__))
#ifdef DEBUG_TMP_LOGGING
# error "DEBUG_TMP_LOGGING doesn't work with the Sun/crt/stdio.h wrapper."
#endif
RT_C_DECLS_END
#endif