]> git.ipfire.org Git - thirdparty/open-vm-tools.git/commitdiff
Changes in shared code that don't affect open-vm-tools functionality.
authorVMware, Inc <>
Wed, 18 Sep 2013 03:41:16 +0000 (20:41 -0700)
committerDmitry Torokhov <dmitry.torokhov@gmail.com>
Mon, 23 Sep 2013 05:30:00 +0000 (22:30 -0700)
Signed-off-by: Dmitry Torokhov <dtor@vmware.com>
open-vm-tools/lib/include/mutexRankLib.h
open-vm-tools/lib/include/vixCommands.h
open-vm-tools/lib/include/vm_product.h
open-vm-tools/lib/misc/codeset.c

index 29fbd38eca0407843136d1a2eb4eb10d8ac2a7e0..dd31dea9f940fb35cb62fb1ece939faf12217a30 100644 (file)
 #define RANK_hgfsSearchArrayLock     (RANK_libLockBase + 0x4060)
 #define RANK_hgfsNodeArrayLock       (RANK_libLockBase + 0x4070)
 
-/*
- * SLPv2 global lock
- */
-#define RANK_slpv2GlobalLock         (RANK_libLockBase + 0x4305)
-
 /*
  * vigor (must be < VMDB range and < disklib, see bug 741290)
  */
index 3192a945cffc190074add53f15da2c3519f5d7de..0fd8ccd981eab547e474c8c97096367eed61a1a7 100644 (file)
@@ -2129,14 +2129,6 @@ struct VixCommandGenericRequest {
 #include "vmware_pack_end.h"
 VixCommandGenericRequest;
 
-
-/*
- * These are values we use to discover hosts and guests through SLPv2.
- */
-#define VIX_SLPV2_SERVICE_NAME_TOOLS_SERVICE       "VMware_Vix_Tools"
-#define VIX_SLPV2_PROPERTY_IP_ADDR                 "IP"
-#define VIX_SLPV2_PROPERTY_MAC_ADDR                "Mac"
-
 /*
  * The security classifications for async op types/op code. Each op code
  * is given a security category, and the VMX uses that category to determine
index 3cb951969053833fb8699f79bea8cb22861f09ea..d7243645afff1890104c179c13b16245b8b1602b 100644 (file)
 #      if defined VMX86_DESKTOP
 /*
  * Fusion can be relocated, so it does not have a default library directory.
- * To retrieve the Fusion library directory, use Location_GetLibrary() instead.
+ * To retrieve the Fusion library directory, use Location_Get("libDir") instead.
  */
 #         define DEFAULT_LIBDIRECTORY \
              "/dev/null/Non-existing DEFAULT_LIBDIRECTORY"
index 7f1f6fbf8d363d75be4c52025535d873614f0ab0..2617099927bd9ce998b1bbc78cdb5fc4b9d7a02d 100644 (file)
@@ -604,11 +604,10 @@ CodeSet_Init(const char *icuDataDir) // IN: ICU data file location in Current co
    } else {
       /* Use a default ICU data dir. */
 #   if defined __APPLE__
-      Location_GetLibrary_Type *Location_GetLibrary =
-         Location_GetLibrary_Addr();
+      Location_Get_Type *Location_Get = Location_Get_Addr();
 
-      if (Location_GetLibrary) {
-         char *libDir = Location_GetLibrary();
+      if (Location_Get) {
+         char *libDir = Location_Get("libDir");
          Bool success =    libDir
                         && DynBuf_Append(&dbpath, libDir, strlen(libDir));