Skip to content
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.

Commit

Permalink
Merge remote branch 'origin/isolates2'
Browse files Browse the repository at this point in the history
  • Loading branch information
ry committed Dec 29, 2011
2 parents c24276f + 5427311 commit 4b3824b
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions deps/uv/src/win/thread.c
Expand Up @@ -113,6 +113,11 @@ int uv_thread_join(uv_thread_t *tid) {
}


uv_thread_t uv_thread_self(void) {
return GetCurrentThreadId();
}


int uv_mutex_init(uv_mutex_t* mutex) {
InitializeCriticalSection(mutex);
return 0;
Expand Down

0 comments on commit 4b3824b

Please sign in to comment.