2001-09-12 04:01:02 +08:00
|
|
|
/* init.cc
|
2000-02-18 03:38:33 +08:00
|
|
|
|
2003-11-29 04:55:59 +08:00
|
|
|
Copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 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"
|
2003-12-14 15:09:22 +08:00
|
|
|
#include "cygthread.h"
|
2003-11-29 04:55:59 +08:00
|
|
|
#include "cygtls.h"
|
2000-02-18 03:38:33 +08:00
|
|
|
|
|
|
|
int NO_COPY dynamically_loaded;
|
|
|
|
|
2003-12-14 15:09:22 +08:00
|
|
|
static void WINAPI
|
|
|
|
threadfunc_fe (VOID *arg)
|
|
|
|
{
|
|
|
|
_threadinfo::call ((DWORD (*) (void *, void *)) (((char **) _tlsbase)[-1]), arg);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
munge_threadfunc (HANDLE cygwin_hmodule)
|
|
|
|
{
|
|
|
|
char **ebp = (char **) __builtin_frame_address (0);
|
|
|
|
static unsigned threadfunc_ix;
|
|
|
|
if (!threadfunc_ix)
|
|
|
|
{
|
|
|
|
for (char **peb = ebp; peb < (char **) _tlsbase; peb++)
|
|
|
|
if (*peb == (char *) cygthread::stub)
|
|
|
|
{
|
|
|
|
threadfunc_ix = peb - ebp;
|
|
|
|
goto foundit;
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
foundit:
|
|
|
|
char *threadfunc = ebp[threadfunc_ix];
|
|
|
|
ebp[threadfunc_ix] = (char *) threadfunc_fe;
|
|
|
|
((char **) _tlsbase)[-1] = threadfunc;
|
|
|
|
}
|
|
|
|
|
|
|
|
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:
|
|
|
|
dynamically_loaded = (static_load == NULL);
|
2003-12-24 00:26:31 +08:00
|
|
|
__cygwin_user_data.impure_ptr = &_my_tls.local_clib;
|
|
|
|
_my_tls.stackptr = _my_tls.stack;
|
2000-02-18 03:38:33 +08:00
|
|
|
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:
|
2003-12-14 15:09:22 +08:00
|
|
|
munge_threadfunc (h);
|
2000-02-18 03:38:33 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|