]> git.ipfire.org Git - thirdparty/open-vm-tools.git/commitdiff
lib/log: Remove GuestLog_* declarations from log.h
authorOliver Kurth <okurth@vmware.com>
Fri, 15 Sep 2017 18:23:28 +0000 (11:23 -0700)
committerOliver Kurth <okurth@vmware.com>
Fri, 15 Sep 2017 18:23:28 +0000 (11:23 -0700)
open-vm-tools/lib/include/log.h

index 6d055ae62208a5879aa9a0834601ed299640b975..e916c86a8430c8aef22a0fcfa74cedd0a1845760 100644 (file)
@@ -1,5 +1,5 @@
 /*********************************************************
- * Copyright (C) 1998-2016 VMware, Inc. All rights reserved.
+ * Copyright (C) 1998-2017 VMware, Inc. All rights reserved.
  *
  * This program is free software; you can redistribute it and/or modify it
  * under the terms of the GNU Lesser General Public License as published
@@ -338,13 +338,17 @@ Log_InitWithStdioSimple(const char *appPrefix,
 void Log_Exit(void);
 
 Bool Log_Outputting(void);
+
 Bool Log_IsLevelOutputting(int level);
 
 const char *Log_GetFileName(void);
+
 const char *Log_GetOutputFileName(LogOutput *output);
 
 void Log_SkipLocking(Bool skipLocking);
+
 void Log_DisableThrottling(void);
+
 uint32 Log_MaxLineLength(void);
 
 size_t Log_MakeTimeString(Bool millisec,
@@ -358,12 +362,6 @@ Bool Log_BoundNumFiles(struct LogOutput *output,
                        LogOwnerFunc *func,
                        void *userData);
 
-/* Logging that uses the custom guest throttling configuration. */
-void GuestLog_Init(void);
-void GuestLog_Log(const char *fmt,
-                  ...) PRINTF_DECL(1, 2);
-
-
 #if defined(VMX86_SERVER)
 #define LOG_KEEPOLD 6  // Old log files to keep around; ESX value
 #else