Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(149)

Unified Diff: third_party/lzma/v4_65/files/CPP/Windows/Thread.h

Issue 624713003: Keep only base/extractor.[cc|h]. (Closed) Base URL: https://chromium.googlesource.com/external/omaha.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/lzma/v4_65/files/CPP/Windows/Thread.h
diff --git a/third_party/lzma/v4_65/files/CPP/Windows/Thread.h b/third_party/lzma/v4_65/files/CPP/Windows/Thread.h
deleted file mode 100644
index 39104f4a29b56de0cf779464a5d7148cfd6bfdd9..0000000000000000000000000000000000000000
--- a/third_party/lzma/v4_65/files/CPP/Windows/Thread.h
+++ /dev/null
@@ -1,41 +0,0 @@
-// Windows/Thread.h
-
-#ifndef __WINDOWS_THREAD_H
-#define __WINDOWS_THREAD_H
-
-#include "Defs.h"
-
-extern "C"
-{
-#include "../../C/Threads.h"
-}
-
-namespace NWindows {
-
-class CThread
-{
- ::CThread thread;
-public:
- CThread() { Thread_Construct(&thread); }
- ~CThread() { Close(); }
- bool IsCreated() { return Thread_WasCreated(&thread) != 0; }
- WRes Close() { return Thread_Close(&thread); }
- WRes Create(THREAD_FUNC_RET_TYPE (THREAD_FUNC_CALL_TYPE *startAddress)(void *), LPVOID parameter)
- { return Thread_Create(&thread, startAddress, parameter); }
- WRes Wait() { return Thread_Wait(&thread); }
-
- #ifdef _WIN32
- operator HANDLE() { return thread.handle; }
- void Attach(HANDLE handle) { thread.handle = handle; }
- HANDLE Detach() { HANDLE h = thread.handle; thread.handle = NULL; return h; }
- DWORD Resume() { return ::ResumeThread(thread.handle); }
- DWORD Suspend() { return ::SuspendThread(thread.handle); }
- bool Terminate(DWORD exitCode) { return BOOLToBool(::TerminateThread(thread.handle, exitCode)); }
- int GetPriority() { return ::GetThreadPriority(thread.handle); }
- bool SetPriority(int priority) { return BOOLToBool(::SetThreadPriority(thread.handle, priority)); }
- #endif
-};
-
-}
-
-#endif
« no previous file with comments | « third_party/lzma/v4_65/files/CPP/Windows/System.cpp ('k') | third_party/lzma/v4_65/files/CPP/Windows/Time.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698