* exceptions.cc (set_signal_mask): Redefine to not pass by address. Report
calculated mask in debugging output. * sigproc.h (set_signal_mask): Reflect above change in declaration. * path.cc (mount_item::build_win32): Take path apart before feeding it to fnmunge. Throughout, change use of _reent_winsup()-> to _my_tls.locals. instead. Throughout, remove obsolete MT_SAFE/_CYG_THREAD_FAILSAFE considerations. Througout, add cygtls.h include. * Makefile.in (DLL_OFILES): Add cygtls.o. Add some more objects to the -fomit-frame-pointer list. * acconfig.h: Remove obsolete settings. * config.h.in: Ditto. * bsdlib.cc: Add cygtls.h include. * configure.in: Remove --enable-extra-threadsafe-checking. * configure: Regenerate. * cygtls.h (_local_storage): New struct renamed from _winsup_t (sic). (_threadinfo:local_clib): Add new field. (_threadinfo::locals): Ditto. (_threadinfo::init_thread): Accept second _reent * argument. (_threadinfo::call): Define as regparm. (CYGTLS_PADSIZE): Remove unnecessary slop. (_getreent): Define as a macro. * thread.h: Remove _CYG_THREAD_FAILSAFE and MT_SAFE stuff. (_winsup_t): Move to cygtls.h. (ResourceLocks::ResourceLocks): Eliminate empty constructor. (MTinterface::reents): Eliminate. (MTinterface::thread_self_key): Eliminate. (MTinterface::MTinterface): Eliminate. * dcrt0.cc: Include stdio.h for _impure_ptr initialization. (do_global_ctors): Remove run_ctors_p (sic) considerations. Don't call atexit here. (__main): Initialize destructors for user here. (dll_crt0_1): Accept a dummy argument. Don't call init_thread here. Don't set _impure_ptr here. Call do_global_ctors after more things have been initialized. (_dll_crt0): Define zeros buffer as max of needed size of CYGTLS_PADSIZE so that it can be used for two purposes while minimizing stack usage. Initialize _impure_ptr specifically, for speed. Call dll_crt0_1 with buffer argument. (cygwin_dll_init): Call dll_crt0_1 with dummy argument. * dtable.cc (dtable::find_unused_handle): Remove call to AssertResourceOwner. * exceptions.cc: Move _threadinfo stuff to new file. * cygtls.cc: New file. * gentls_offsets: Accommodate increasing complexity of cygtls.h. * hires.h (hires_base::~hires_base): Remove. * init.cc (dll_entry): Remove setting of reents. * thread.cc: Remove syslog.h include. (__getreent): Simplify to use _my_tls. (_reent_winsup): Delete. (AssertResourceOwner): Delete. (MTinterface::Init): Remove setting of _clib and _winsup, with all that entails. (MTinterface::fixup_after_fork): Ditto. (pthread::thread_init_wrapper): Ditto. Also remove call to set_tls_self_pointer. (pthread::set_tls_self_pointer): Eliminate. (pthread::get_tls_self_pointer): Just return _my_tls.tid; (__reent_t::init_clib): Eliminate. * tlsoffsets.h: Regenerate.
This commit is contained in:
@ -34,7 +34,6 @@ details. */
|
||||
#include "cygerrno.h"
|
||||
#include <assert.h>
|
||||
#include <stdlib.h>
|
||||
#include <syslog.h>
|
||||
#include "pinfo.h"
|
||||
#include "sigproc.h"
|
||||
#include "perprocess.h"
|
||||
@ -48,112 +47,36 @@ details. */
|
||||
|
||||
extern int threadsafe;
|
||||
|
||||
#undef __getreent
|
||||
extern "C" struct _reent *
|
||||
__getreent ()
|
||||
{
|
||||
struct __reent_t *_r =
|
||||
(struct __reent_t *) MT_INTERFACE->reent_key.get ();
|
||||
|
||||
if (_r == 0)
|
||||
{
|
||||
#ifdef _CYG_THREAD_FAILSAFE
|
||||
system_printf ("local thread storage not inited");
|
||||
#endif
|
||||
/* Return _impure_ptr as long as MTinterface is not initialized */
|
||||
return _impure_ptr;
|
||||
}
|
||||
|
||||
return _r->_clib;
|
||||
}
|
||||
|
||||
struct _winsup_t *
|
||||
_reent_winsup ()
|
||||
{
|
||||
struct __reent_t *_r =
|
||||
(struct __reent_t *) MT_INTERFACE->reent_key.get ();
|
||||
|
||||
if (_r == 0)
|
||||
{
|
||||
#ifdef _CYG_THREAD_FAILSAFE
|
||||
system_printf ("local thread storage not inited");
|
||||
#endif
|
||||
return NULL;
|
||||
}
|
||||
|
||||
return _r->_winsup;
|
||||
return &_my_tls.local_clib;
|
||||
}
|
||||
|
||||
inline LPCRITICAL_SECTION
|
||||
ResourceLocks::Lock (int _resid)
|
||||
{
|
||||
#ifdef _CYG_THREAD_FAILSAFE
|
||||
if (!inited)
|
||||
system_printf ("lock called before initialization");
|
||||
|
||||
thread_printf
|
||||
("Get Resource lock %d ==> %p for %p , real : %d , threadid %d ", _resid,
|
||||
&lock, user_data, myself->pid, GetCurrentThreadId ());
|
||||
#endif
|
||||
return &lock;
|
||||
}
|
||||
|
||||
void
|
||||
SetResourceLock (int _res_id, int _mode, const char *_function)
|
||||
{
|
||||
#ifdef _CYG_THREAD_FAILSAFE
|
||||
thread_printf ("Set resource lock %d mode %d for %s start",
|
||||
_res_id, _mode, _function);
|
||||
#endif
|
||||
EnterCriticalSection (user_data->resourcelocks->Lock (_res_id));
|
||||
|
||||
#ifdef _CYG_THREAD_FAILSAFE
|
||||
user_data->resourcelocks->owner = GetCurrentThreadId ();
|
||||
user_data->resourcelocks->count++;
|
||||
#endif
|
||||
}
|
||||
|
||||
void
|
||||
ReleaseResourceLock (int _res_id, int _mode, const char *_function)
|
||||
{
|
||||
#ifdef _CYG_THREAD_FAILSAFE
|
||||
thread_printf ("Release resource lock %d mode %d for %s done", _res_id,
|
||||
_mode, _function);
|
||||
|
||||
AssertResourceOwner (_res_id, _mode);
|
||||
user_data->resourcelocks->count--;
|
||||
if (user_data->resourcelocks->count == 0)
|
||||
user_data->resourcelocks->owner = 0;
|
||||
#endif
|
||||
|
||||
LeaveCriticalSection (user_data->resourcelocks->Lock (_res_id));
|
||||
}
|
||||
|
||||
#ifdef _CYG_THREAD_FAILSAFE
|
||||
void
|
||||
AssertResourceOwner (int _res_id, int _mode)
|
||||
{
|
||||
|
||||
thread_printf
|
||||
("Assert Resource lock %d ==> for %p , real : %d , threadid %d count %d owner %d",
|
||||
_res_id, user_data, myself->pid, GetCurrentThreadId (),
|
||||
user_data->resourcelocks->count, user_data->resourcelocks->owner);
|
||||
if (user_data && (user_data->resourcelocks->owner != GetCurrentThreadId ()))
|
||||
system_printf ("assertion failed, not the resource owner");
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
void
|
||||
ResourceLocks::Init ()
|
||||
{
|
||||
InitializeCriticalSection (&lock);
|
||||
inited = true;
|
||||
|
||||
#ifdef _CYG_THREAD_FAILSAFE
|
||||
owner = 0;
|
||||
count = 0;
|
||||
#endif
|
||||
|
||||
thread_printf ("lock %p inited by %p , %d", &lock, user_data, myself->pid);
|
||||
}
|
||||
|
||||
@ -171,11 +94,6 @@ ResourceLocks::Delete ()
|
||||
void
|
||||
MTinterface::Init ()
|
||||
{
|
||||
reents._clib = _impure_ptr;
|
||||
reents._winsup = &winsup_reent;
|
||||
winsup_reent._process_logmask = LOG_UPTO (LOG_DEBUG);
|
||||
reent_key.set (&reents);
|
||||
|
||||
pthread_mutex::init_mutex ();
|
||||
pthread_cond::init_mutex ();
|
||||
pthread_rwlock::init_mutex ();
|
||||
@ -193,14 +111,6 @@ MTinterface::fixup_after_fork (void)
|
||||
{
|
||||
pthread_key::fixup_after_fork ();
|
||||
|
||||
/* As long as the signal handling not multithreaded
|
||||
switch reents storage back to _impure_ptr for the mainthread
|
||||
to support fork from threads other than the mainthread */
|
||||
reents._clib = _impure_ptr;
|
||||
reents._winsup = &winsup_reent;
|
||||
winsup_reent._process_logmask = LOG_UPTO (LOG_DEBUG);
|
||||
reent_key.set (&reents);
|
||||
|
||||
threadcount = 0;
|
||||
pthread::init_mainthread ();
|
||||
|
||||
@ -232,7 +142,6 @@ pthread::init_mainthread ()
|
||||
GetCurrentProcess (), &thread->win32_obj_id,
|
||||
0, FALSE, DUPLICATE_SAME_ACCESS))
|
||||
api_fatal ("failed to create mainthread handle");
|
||||
thread->set_tls_self_pointer ();
|
||||
if (!thread->create_cancel_event ())
|
||||
api_fatal ("couldn't create cancel event for main thread");
|
||||
thread->postcreate ();
|
||||
@ -247,20 +156,12 @@ pthread::self ()
|
||||
return pthread_null::get_null_pthread ();
|
||||
}
|
||||
|
||||
void
|
||||
pthread::set_tls_self_pointer ()
|
||||
{
|
||||
MT_INTERFACE->thread_self_key.set (this);
|
||||
}
|
||||
|
||||
pthread *
|
||||
pthread::get_tls_self_pointer ()
|
||||
{
|
||||
return (pthread *) MT_INTERFACE->thread_self_key.get ();
|
||||
return _my_tls.tid;
|
||||
}
|
||||
|
||||
|
||||
|
||||
List<pthread> pthread::threads;
|
||||
|
||||
/* member methods */
|
||||
@ -1876,18 +1777,6 @@ verifyable_object_isvalid (void const * objectptr, long magic)
|
||||
return verifyable_object_isvalid (objectptr, magic, NULL);
|
||||
}
|
||||
|
||||
inline void
|
||||
__reent_t::init_clib (struct _reent& var)
|
||||
{
|
||||
var = ((struct _reent) _REENT_INIT (var));
|
||||
var._stdin = _GLOBAL_REENT->_stdin;
|
||||
var._stdout = _GLOBAL_REENT->_stdout;
|
||||
var._stderr = _GLOBAL_REENT->_stderr;
|
||||
var.__sdidinit = _GLOBAL_REENT->__sdidinit;
|
||||
var.__cleanup = _GLOBAL_REENT->__cleanup;
|
||||
_clib = &var;
|
||||
};
|
||||
|
||||
DWORD WINAPI
|
||||
pthread::thread_init_wrapper (void *arg)
|
||||
{
|
||||
@ -1897,32 +1786,14 @@ pthread::thread_init_wrapper (void *arg)
|
||||
exception_list cygwin_except_entry;
|
||||
init_exceptions (&cygwin_except_entry); /* Initialize SIGSEGV handling, etc. */
|
||||
|
||||
thread->set_tls_self_pointer ();
|
||||
struct __reent_t local_reent;
|
||||
struct _winsup_t local_winsup;
|
||||
struct _reent local_clib;
|
||||
|
||||
memset (&local_winsup, 0, sizeof (struct _winsup_t));
|
||||
|
||||
local_reent.init_clib (local_clib);
|
||||
local_reent._winsup = &local_winsup;
|
||||
|
||||
local_winsup._process_logmask = LOG_UPTO (LOG_DEBUG);
|
||||
|
||||
MT_INTERFACE->reent_key.set (&local_reent);
|
||||
|
||||
thread->mutex.lock ();
|
||||
|
||||
// if thread is detached force cleanup on exit
|
||||
if (thread->attr.joinable == PTHREAD_CREATE_DETACHED && thread->joiner == NULL)
|
||||
thread->joiner = thread;
|
||||
thread->mutex.unlock ();
|
||||
|
||||
#ifdef _CYG_THREAD_FAILSAFE
|
||||
if (_REENT == _impure_ptr)
|
||||
system_printf ("local storage for thread isn't setup correctly");
|
||||
#endif
|
||||
|
||||
thread_printf ("started thread %p %p %p %p %p %p", arg, &local_clib,
|
||||
thread_printf ("started thread %p %p %p %p %p %p", arg, &_my_tls.local_clib,
|
||||
_impure_ptr, thread, thread->function, thread->arg);
|
||||
|
||||
// call the user's thread
|
||||
@ -2394,7 +2265,7 @@ pthread_getschedparam (pthread_t thread, int *policy,
|
||||
return 0;
|
||||
}
|
||||
|
||||
/* Thread SpecificData */
|
||||
/* Thread Specific Data */
|
||||
extern "C" int
|
||||
pthread_key_create (pthread_key_t *key, void (*destructor) (void *))
|
||||
{
|
||||
|
Reference in New Issue
Block a user