2001-09-12 04:01:02 +08:00
|
|
|
/* init.cc
|
2000-02-18 03:38:33 +08:00
|
|
|
|
2002-09-17 00:09:54 +08:00
|
|
|
Copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002 Red Hat, Inc.
|
2000-02-18 03:38:33 +08:00
|
|
|
|
|
|
|
This file is part of Cygwin.
|
|
|
|
|
|
|
|
This software is a copyrighted work licensed under the terms of the
|
|
|
|
Cygwin license. Please consult the file "CYGWIN_LICENSE" for
|
|
|
|
details. */
|
|
|
|
|
|
|
|
#include "winsup.h"
|
2000-08-03 00:28:18 +08:00
|
|
|
#include <stdlib.h>
|
2000-08-22 13:10:20 +08:00
|
|
|
#include "thread.h"
|
2000-09-08 10:56:55 +08:00
|
|
|
#include "perprocess.h"
|
2000-02-18 03:38:33 +08:00
|
|
|
|
|
|
|
int NO_COPY dynamically_loaded;
|
|
|
|
|
2000-02-24 10:49:44 +08:00
|
|
|
extern "C" int
|
|
|
|
WINAPI dll_entry (HANDLE h, DWORD reason, void *static_load)
|
2000-02-18 03:38:33 +08:00
|
|
|
{
|
|
|
|
switch (reason)
|
|
|
|
{
|
|
|
|
case DLL_PROCESS_ATTACH:
|
2000-02-24 10:49:44 +08:00
|
|
|
cygwin_hmodule = (HMODULE) h;
|
2000-02-18 03:38:33 +08:00
|
|
|
dynamically_loaded = (static_load == NULL);
|
|
|
|
break;
|
2002-10-07 12:12:54 +08:00
|
|
|
case DLL_PROCESS_DETACH:
|
|
|
|
break;
|
2000-02-18 03:38:33 +08:00
|
|
|
case DLL_THREAD_ATTACH:
|
2002-11-24 21:54:14 +08:00
|
|
|
if (MT_INTERFACE->reent_key.set (&MT_INTERFACE->reents))
|
2002-10-07 12:12:54 +08:00
|
|
|
api_fatal ("thread initialization failed");
|
2000-02-18 03:38:33 +08:00
|
|
|
break;
|
|
|
|
case DLL_THREAD_DETACH:
|
2002-10-07 12:12:54 +08:00
|
|
|
/* not invoked */;
|
2000-02-18 03:38:33 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|