From: VMware, Inc <> Date: Tue, 29 Mar 2011 18:41:19 +0000 (-0700) Subject: Changes in shared code that don't affect open-vm-tools functionality. X-Git-Tag: 2011.03.28-387002~98 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d2ed2f249e20386528d0872940336545f3052997;p=thirdparty%2Fopen-vm-tools.git Changes in shared code that don't affect open-vm-tools functionality. Signed-off-by: Marcelo Vanzin --- diff --git a/open-vm-tools/lib/include/vmci_sockets.h b/open-vm-tools/lib/include/vmci_sockets.h index a208a850a..4e90b0de1 100644 --- a/open-vm-tools/lib/include/vmci_sockets.h +++ b/open-vm-tools/lib/include/vmci_sockets.h @@ -122,7 +122,18 @@ struct sockaddr_vm { } return afvalue; } - + + static __inline int VMCISock_GetAFValueFd(int *outFd) + { + (void)outFd; /* Unused parameter. */ + return VMCISock_GetAFValue(); + } + + static __inline void VMCISock_ReleaseAFValueFd(int fd) + { + (void)fd; /* Unused parameter. */ + } + static __inline unsigned int VMCISock_GetLocalCID(void) { unsigned int cid = VMADDR_CID_ANY;