win: remove pthread-win32 init code

pull/22966/head
Igor Zinkovsky 2011-10-14 17:47:01 -07:00 committed by Ben Noordhuis
parent 107b05772a
commit 971c3d90eb
1 changed files with 0 additions and 15 deletions

View File

@ -58,12 +58,6 @@ typedef int mode_t;
#if defined(__MINGW32__) || defined(_MSC_VER)
# include <platform_win32.h> /* winapi_perror() */
# ifdef PTW32_STATIC_LIB
extern "C" {
BOOL __cdecl pthread_win32_process_attach_np (void);
BOOL __cdecl pthread_win32_process_detach_np (void);
}
# endif
#endif
#ifdef __POSIX__
@ -2539,11 +2533,6 @@ void EmitExit(v8::Handle<v8::Object> process) {
int Start(int argc, char *argv[]) {
#if (defined(__MINGW32__) || defined(_MSC_VER)) && defined(PTW32_STATIC_LIB)
pthread_win32_process_attach_np();
#endif
// This needs to run *before* V8::Initialize()
argv = Init(argc, argv);
@ -2576,10 +2565,6 @@ int Start(int argc, char *argv[]) {
V8::Dispose();
#endif // NDEBUG
#if (defined(__MINGW32__) || defined(_MSC_VER)) && defined(PTW32_STATIC_LIB)
pthread_win32_process_detach_np();
#endif
return 0;
}