aboutsummaryrefslogtreecommitdiffstats
path: root/win32/win32.c
diff options
context:
space:
mode:
Diffstat (limited to 'win32/win32.c')
-rw-r--r--win32/win32.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/win32/win32.c b/win32/win32.c
index bf8ddc34e1..966688286e 100644
--- a/win32/win32.c
+++ b/win32/win32.c
@@ -279,25 +279,8 @@ rb_w32_osver(void)
#define IfWin95(win95, winnt) (winnt)
#endif
-/* License: Ruby's */
-HANDLE
-GetCurrentThreadHandle(void)
-{
- static HANDLE current_process_handle = NULL;
- HANDLE h;
-
- if (!current_process_handle)
- current_process_handle = GetCurrentProcess();
- if (!DuplicateHandle(current_process_handle, GetCurrentThread(),
- current_process_handle, &h,
- 0, FALSE, DUPLICATE_SAME_ACCESS))
- return NULL;
- return h;
-}
-
/* simulate flock by locking a range on the file */
-
/* License: Artistic or GPL */
#define LK_ERR(f,i) \
do { \