From 1ab516a1b8ff6acae0c1185d545224d68a8f56c5 Mon Sep 17 00:00:00 2001 From: Akash Mozumdar Date: Sun, 20 May 2018 17:12:17 -0400 Subject: [PATCH] remove unused code --- vnr/vnrhook/src/pipe.cc | 30 ------------------------------ 1 file changed, 30 deletions(-) diff --git a/vnr/vnrhook/src/pipe.cc b/vnr/vnrhook/src/pipe.cc index b527ff6..706cd4c 100644 --- a/vnr/vnrhook/src/pipe.cc +++ b/vnr/vnrhook/src/pipe.cc @@ -19,36 +19,6 @@ HANDLE hookPipe; -// jichi 9/28/2013: protect pipe on wine -// Put the definition in this file so that it might be inlined -void CliUnlockPipe() -{ - if (IthIsWine()) - IthReleaseMutex(::hmMutex); -} - -void CliLockPipe() -{ - if (IthIsWine()) { - const LONGLONG timeout = -50000000; // in nanoseconds = 5 seconds - NtWaitForSingleObject(hmMutex, 0, (PLARGE_INTEGER)&timeout); - } -} - -HANDLE IthOpenPipe(LPWSTR name, ACCESS_MASK direction) -{ - UNICODE_STRING us; - RtlInitUnicodeString(&us,name); - SECURITY_DESCRIPTOR sd = {1}; - OBJECT_ATTRIBUTES oa = {sizeof(oa), 0, &us, OBJ_CASE_INSENSITIVE, &sd, 0}; - HANDLE hFile; - IO_STATUS_BLOCK isb; - if (NT_SUCCESS(NtCreateFile(&hFile, direction, &oa, &isb, 0, 0, FILE_SHARE_READ, FILE_OPEN, 0, 0, 0))) - return hFile; - else - return INVALID_HANDLE_VALUE; -} - DWORD WINAPI PipeManager(LPVOID unused) { enum { STANDARD_WAIT = 1000 };