| * Copyright (C) 2009 Andrzej K. Haczewski <ahaczewski@gmail.com> |
| * DISCLAIMER: The implementation is Git-specific, it is subset of original |
| * Pthreads API, without lots of other features that Git doesn't use. |
| * Git also makes sure that the passed arguments are valid, so there's |
| * no need for double-checking. |
| #include "../../git-compat-util.h" |
| static unsigned __stdcall win32_start_routine(void *arg) |
| thread->tid = GetCurrentThreadId(); |
| thread->arg = thread->start_routine(thread->arg); |
| int pthread_create(pthread_t *thread, const void *unused, |
| void *(*start_routine)(void*), void *arg) |
| thread->start_routine = start_routine; |
| thread->handle = (HANDLE) |
| _beginthreadex(NULL, 0, win32_start_routine, thread, 0, NULL); |
| int win32_pthread_join(pthread_t *thread, void **value_ptr) |
| DWORD result = WaitForSingleObject(thread->handle, INFINITE); |
| *value_ptr = thread->arg; |
| return err_win_to_posix(GetLastError()); |
| pthread_t pthread_self(void) |
| t.tid = GetCurrentThreadId(); |