2008-01-08 23:56:08 +03:00
|
|
|
/* $NetBSD: pthread.c,v 1.96 2008/01/08 20:56:08 christos Exp $ */
|
2003-01-18 13:32:11 +03:00
|
|
|
|
|
|
|
/*-
|
2007-02-22 01:31:38 +03:00
|
|
|
* Copyright (c) 2001, 2002, 2003, 2006, 2007 The NetBSD Foundation, Inc.
|
2003-01-18 13:32:11 +03:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This code is derived from software contributed to The NetBSD Foundation
|
2006-12-23 08:14:46 +03:00
|
|
|
* by Nathan J. Williams and Andrew Doran.
|
2003-01-18 13:32:11 +03:00
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by the NetBSD
|
|
|
|
* Foundation, Inc. and its contributors.
|
|
|
|
* 4. Neither the name of The NetBSD Foundation nor the names of its
|
|
|
|
* contributors may be used to endorse or promote products derived
|
|
|
|
* from this software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
|
|
|
|
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
|
|
|
|
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
|
|
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
|
|
|
|
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
2003-03-08 11:03:34 +03:00
|
|
|
#include <sys/cdefs.h>
|
2008-01-08 23:56:08 +03:00
|
|
|
__RCSID("$NetBSD: pthread.c,v 1.96 2008/01/08 20:56:08 christos Exp $");
|
2007-08-16 05:09:34 +04:00
|
|
|
|
|
|
|
#define __EXPOSE_STACK 1
|
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/mman.h>
|
|
|
|
#include <sys/sysctl.h>
|
2007-11-13 20:20:08 +03:00
|
|
|
#include <sys/lwpctl.h>
|
2003-03-08 11:03:34 +03:00
|
|
|
|
2003-01-18 13:32:11 +03:00
|
|
|
#include <err.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <lwp.h>
|
|
|
|
#include <signal.h>
|
2003-02-15 07:34:40 +03:00
|
|
|
#include <stdio.h>
|
2003-01-18 13:32:11 +03:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
Implement a bunch of pthread_attr_() functions, which genuinely set and examine
pthread_attr_t objects, although most of the properties being set don't really
affect threads yet:
pthread_attr_{get,set}guardsize()
pthread_attr_{get,set}inheritsched()
pthread_attr_{get,set}scope()
pthread_attr_{get,set}stack()
pthread_attr_setstack{size,addr}()
Remove some useless assertions and error checks in the existing pthread_attr()
routines.
Implement pthread_attr_get_np(), to examine the attributes of an existing
thread. Idea and interface from FreeBSD.
Change PTHREAD_ERRORMODE environment variable to PTHREAD_DIAGASSERT, and
make it behave like libc's LIBC_DIAGASSERT. The way to disable error-checking
and aborting is now "PTHREAD_DIAGASSERT=AEL", rather than
"PTHREAD_ERRORMODE=ignore".
2003-07-19 02:12:30 +04:00
|
|
|
#include <syslog.h>
|
2003-01-18 13:32:11 +03:00
|
|
|
#include <ucontext.h>
|
2003-02-15 07:34:40 +03:00
|
|
|
#include <unistd.h>
|
2003-01-18 13:32:11 +03:00
|
|
|
#include <sched.h>
|
2007-08-16 05:09:34 +04:00
|
|
|
|
2003-01-18 13:32:11 +03:00
|
|
|
#include "pthread.h"
|
|
|
|
#include "pthread_int.h"
|
|
|
|
|
2007-10-16 17:41:18 +04:00
|
|
|
pthread_rwlock_t pthread__alltree_lock = PTHREAD_RWLOCK_INITIALIZER;
|
|
|
|
RB_HEAD(__pthread__alltree, __pthread_st) pthread__alltree;
|
|
|
|
|
|
|
|
#ifndef lint
|
|
|
|
static int pthread__cmp(struct __pthread_st *, struct __pthread_st *);
|
|
|
|
RB_PROTOTYPE_STATIC(__pthread__alltree, __pthread_st, pt_alltree, pthread__cmp)
|
|
|
|
#endif
|
|
|
|
|
2007-11-13 20:20:08 +03:00
|
|
|
static void pthread__create_tramp(pthread_t, void *(*)(void *), void *);
|
2007-08-04 17:37:48 +04:00
|
|
|
static void pthread__initthread(pthread_t);
|
2007-08-16 16:01:49 +04:00
|
|
|
static void pthread__scrubthread(pthread_t, char *, int);
|
2007-08-16 05:09:34 +04:00
|
|
|
static int pthread__stackid_setup(void *, size_t, pthread_t *);
|
|
|
|
static int pthread__stackalloc(pthread_t *);
|
|
|
|
static void pthread__initmain(pthread_t *);
|
2007-11-13 20:20:08 +03:00
|
|
|
static void pthread__fork_callback(void);
|
2007-12-24 17:46:28 +03:00
|
|
|
static void pthread__reap(pthread_t);
|
2008-01-08 23:56:08 +03:00
|
|
|
static void pthread__child_callback(void);
|
|
|
|
static void pthread__start(void);
|
2003-01-18 13:32:11 +03:00
|
|
|
|
2007-11-13 18:57:10 +03:00
|
|
|
void pthread__init(void);
|
|
|
|
|
2003-01-18 13:32:11 +03:00
|
|
|
int pthread__started;
|
2007-09-09 02:49:50 +04:00
|
|
|
pthread_mutex_t pthread__deadqueue_lock = PTHREAD_MUTEX_INITIALIZER;
|
2007-08-04 17:37:48 +04:00
|
|
|
pthread_queue_t pthread__deadqueue;
|
2007-10-16 19:07:02 +04:00
|
|
|
pthread_queue_t pthread__allqueue;
|
2003-01-18 13:32:11 +03:00
|
|
|
|
|
|
|
static pthread_attr_t pthread_default_attr;
|
2007-11-13 20:20:08 +03:00
|
|
|
static lwpctl_t pthread__dummy_lwpctl = { .lc_curcpu = LWPCTL_CPU_NONE };
|
|
|
|
static pthread_t pthread__first;
|
2003-01-18 13:32:11 +03:00
|
|
|
|
Implement a bunch of pthread_attr_() functions, which genuinely set and examine
pthread_attr_t objects, although most of the properties being set don't really
affect threads yet:
pthread_attr_{get,set}guardsize()
pthread_attr_{get,set}inheritsched()
pthread_attr_{get,set}scope()
pthread_attr_{get,set}stack()
pthread_attr_setstack{size,addr}()
Remove some useless assertions and error checks in the existing pthread_attr()
routines.
Implement pthread_attr_get_np(), to examine the attributes of an existing
thread. Idea and interface from FreeBSD.
Change PTHREAD_ERRORMODE environment variable to PTHREAD_DIAGASSERT, and
make it behave like libc's LIBC_DIAGASSERT. The way to disable error-checking
and aborting is now "PTHREAD_DIAGASSERT=AEL", rather than
"PTHREAD_ERRORMODE=ignore".
2003-07-19 02:12:30 +04:00
|
|
|
enum {
|
|
|
|
DIAGASSERT_ABORT = 1<<0,
|
|
|
|
DIAGASSERT_STDERR = 1<<1,
|
|
|
|
DIAGASSERT_SYSLOG = 1<<2
|
|
|
|
};
|
2003-04-23 23:35:47 +04:00
|
|
|
|
Implement a bunch of pthread_attr_() functions, which genuinely set and examine
pthread_attr_t objects, although most of the properties being set don't really
affect threads yet:
pthread_attr_{get,set}guardsize()
pthread_attr_{get,set}inheritsched()
pthread_attr_{get,set}scope()
pthread_attr_{get,set}stack()
pthread_attr_setstack{size,addr}()
Remove some useless assertions and error checks in the existing pthread_attr()
routines.
Implement pthread_attr_get_np(), to examine the attributes of an existing
thread. Idea and interface from FreeBSD.
Change PTHREAD_ERRORMODE environment variable to PTHREAD_DIAGASSERT, and
make it behave like libc's LIBC_DIAGASSERT. The way to disable error-checking
and aborting is now "PTHREAD_DIAGASSERT=AEL", rather than
"PTHREAD_ERRORMODE=ignore".
2003-07-19 02:12:30 +04:00
|
|
|
static int pthread__diagassert = DIAGASSERT_ABORT | DIAGASSERT_STDERR;
|
2003-04-23 23:35:47 +04:00
|
|
|
|
2007-08-16 02:48:52 +04:00
|
|
|
int pthread__concurrency;
|
|
|
|
int pthread__nspins;
|
2006-12-24 21:39:45 +03:00
|
|
|
int pthread__unpark_max = PTHREAD__UNPARK_MAX;
|
2007-08-07 23:58:30 +04:00
|
|
|
int pthread__osrev;
|
2004-03-14 04:19:41 +03:00
|
|
|
|
2007-08-16 05:09:34 +04:00
|
|
|
/*
|
|
|
|
* We have to initialize the pthread_stack* variables here because
|
|
|
|
* mutexes are used before pthread_init() and thus pthread__initmain()
|
|
|
|
* are called. Since mutexes only save the stack pointer and not a
|
|
|
|
* pointer to the thread data, it is safe to change the mapping from
|
|
|
|
* stack pointer to thread data afterwards.
|
|
|
|
*/
|
|
|
|
#define _STACKSIZE_LG 18
|
|
|
|
int pthread__stacksize_lg = _STACKSIZE_LG;
|
|
|
|
size_t pthread__stacksize = 1 << _STACKSIZE_LG;
|
|
|
|
vaddr_t pthread__stackmask = (1 << _STACKSIZE_LG) - 1;
|
2007-10-16 17:41:18 +04:00
|
|
|
vaddr_t pthread__threadmask = (vaddr_t)~((1 << _STACKSIZE_LG) - 1);
|
2007-08-16 05:09:34 +04:00
|
|
|
#undef _STACKSIZE_LG
|
|
|
|
|
2006-04-24 22:39:36 +04:00
|
|
|
int _sys___sigprocmask14(int, const sigset_t *, sigset_t *);
|
|
|
|
|
2003-01-18 13:32:11 +03:00
|
|
|
__strong_alias(__libc_thr_self,pthread_self)
|
2003-01-20 00:58:21 +03:00
|
|
|
__strong_alias(__libc_thr_create,pthread_create)
|
|
|
|
__strong_alias(__libc_thr_exit,pthread_exit)
|
2003-01-18 13:32:11 +03:00
|
|
|
__strong_alias(__libc_thr_errno,pthread__errno)
|
2003-07-19 01:57:26 +04:00
|
|
|
__strong_alias(__libc_thr_setcancelstate,pthread_setcancelstate)
|
2007-11-14 22:28:23 +03:00
|
|
|
__strong_alias(__libc_thr_equal,pthread_equal)
|
2007-11-13 18:57:10 +03:00
|
|
|
__strong_alias(__libc_thr_init,pthread__init)
|
2003-01-18 13:32:11 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Static library kludge. Place a reference to a symbol any library
|
|
|
|
* file which does not already have a reference here.
|
|
|
|
*/
|
|
|
|
extern int pthread__cancel_stub_binder;
|
|
|
|
|
|
|
|
void *pthread__static_lib_binder[] = {
|
|
|
|
&pthread__cancel_stub_binder,
|
|
|
|
pthread_cond_init,
|
|
|
|
pthread_mutex_init,
|
|
|
|
pthread_rwlock_init,
|
|
|
|
pthread_barrier_init,
|
|
|
|
pthread_key_create,
|
2003-08-13 22:52:01 +04:00
|
|
|
pthread_setspecific,
|
2003-01-18 13:32:11 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This needs to be started by the library loading code, before main()
|
|
|
|
* gets to run, for various things that use the state of the initial thread
|
|
|
|
* to work properly (thread-specific data is an application-visible example;
|
|
|
|
* spinlock counts for mutexes is an internal example).
|
|
|
|
*/
|
|
|
|
void
|
2007-11-13 18:57:10 +03:00
|
|
|
pthread__init(void)
|
2003-01-18 13:32:11 +03:00
|
|
|
{
|
|
|
|
pthread_t first;
|
Implement a bunch of pthread_attr_() functions, which genuinely set and examine
pthread_attr_t objects, although most of the properties being set don't really
affect threads yet:
pthread_attr_{get,set}guardsize()
pthread_attr_{get,set}inheritsched()
pthread_attr_{get,set}scope()
pthread_attr_{get,set}stack()
pthread_attr_setstack{size,addr}()
Remove some useless assertions and error checks in the existing pthread_attr()
routines.
Implement pthread_attr_get_np(), to examine the attributes of an existing
thread. Idea and interface from FreeBSD.
Change PTHREAD_ERRORMODE environment variable to PTHREAD_DIAGASSERT, and
make it behave like libc's LIBC_DIAGASSERT. The way to disable error-checking
and aborting is now "PTHREAD_DIAGASSERT=AEL", rather than
"PTHREAD_ERRORMODE=ignore".
2003-07-19 02:12:30 +04:00
|
|
|
char *p;
|
2007-08-16 16:01:49 +04:00
|
|
|
int i, mib[2];
|
2004-03-14 04:19:41 +03:00
|
|
|
size_t len;
|
2003-01-18 13:32:11 +03:00
|
|
|
extern int __isthreaded;
|
|
|
|
|
2004-03-14 04:19:41 +03:00
|
|
|
mib[0] = CTL_HW;
|
|
|
|
mib[1] = HW_NCPU;
|
|
|
|
|
2007-08-16 16:01:49 +04:00
|
|
|
len = sizeof(pthread__concurrency);
|
|
|
|
if (sysctl(mib, 2, &pthread__concurrency, &len, NULL, 0) == -1)
|
2007-03-06 02:55:40 +03:00
|
|
|
err(1, "sysctl(hw.ncpu");
|
2004-03-14 04:19:41 +03:00
|
|
|
|
2007-08-07 23:04:21 +04:00
|
|
|
mib[0] = CTL_KERN;
|
|
|
|
mib[1] = KERN_OSREV;
|
|
|
|
|
|
|
|
len = sizeof(pthread__osrev);
|
|
|
|
if (sysctl(mib, 2, &pthread__osrev, &len, NULL, 0) == -1)
|
|
|
|
err(1, "sysctl(hw.osrevision");
|
|
|
|
|
2003-01-18 13:32:11 +03:00
|
|
|
/* Initialize locks first; they're needed elsewhere. */
|
2007-08-16 16:01:49 +04:00
|
|
|
pthread__lockprim_init();
|
2004-03-14 04:19:41 +03:00
|
|
|
|
2007-08-16 16:01:49 +04:00
|
|
|
/* Fetch parameters. */
|
2007-02-10 02:53:24 +03:00
|
|
|
i = (int)_lwp_unpark_all(NULL, 0, NULL);
|
|
|
|
if (i == -1)
|
|
|
|
err(1, "_lwp_unpark_all");
|
2006-12-24 21:39:45 +03:00
|
|
|
if (i < pthread__unpark_max)
|
|
|
|
pthread__unpark_max = i;
|
2003-01-18 13:32:11 +03:00
|
|
|
|
|
|
|
/* Basic data structure setup */
|
|
|
|
pthread_attr_init(&pthread_default_attr);
|
2007-10-16 19:07:02 +04:00
|
|
|
PTQ_INIT(&pthread__allqueue);
|
2003-01-18 13:32:11 +03:00
|
|
|
PTQ_INIT(&pthread__deadqueue);
|
2007-10-16 17:41:18 +04:00
|
|
|
RB_INIT(&pthread__alltree);
|
2007-08-16 05:09:34 +04:00
|
|
|
|
2003-01-18 13:32:11 +03:00
|
|
|
/* Create the thread structure corresponding to main() */
|
|
|
|
pthread__initmain(&first);
|
2007-08-04 17:37:48 +04:00
|
|
|
pthread__initthread(first);
|
2007-08-16 16:01:49 +04:00
|
|
|
pthread__scrubthread(first, NULL, 0);
|
2006-12-23 08:14:46 +03:00
|
|
|
|
|
|
|
first->pt_lid = _lwp_self();
|
2007-10-16 19:07:02 +04:00
|
|
|
PTQ_INSERT_HEAD(&pthread__allqueue, first, pt_allq);
|
2007-10-16 17:41:18 +04:00
|
|
|
RB_INSERT(__pthread__alltree, &pthread__alltree, first);
|
2003-01-18 13:32:11 +03:00
|
|
|
|
2007-12-01 04:07:34 +03:00
|
|
|
(void)_lwp_ctl(LWPCTL_FEATURE_CURCPU, &first->pt_lwpctl);
|
2007-11-13 20:20:08 +03:00
|
|
|
|
2003-01-18 13:32:11 +03:00
|
|
|
/* Start subsystems */
|
|
|
|
PTHREAD_MD_INIT
|
|
|
|
|
2007-11-13 18:57:10 +03:00
|
|
|
for (p = pthread__getenv("PTHREAD_DIAGASSERT"); p && *p; p++) {
|
Implement a bunch of pthread_attr_() functions, which genuinely set and examine
pthread_attr_t objects, although most of the properties being set don't really
affect threads yet:
pthread_attr_{get,set}guardsize()
pthread_attr_{get,set}inheritsched()
pthread_attr_{get,set}scope()
pthread_attr_{get,set}stack()
pthread_attr_setstack{size,addr}()
Remove some useless assertions and error checks in the existing pthread_attr()
routines.
Implement pthread_attr_get_np(), to examine the attributes of an existing
thread. Idea and interface from FreeBSD.
Change PTHREAD_ERRORMODE environment variable to PTHREAD_DIAGASSERT, and
make it behave like libc's LIBC_DIAGASSERT. The way to disable error-checking
and aborting is now "PTHREAD_DIAGASSERT=AEL", rather than
"PTHREAD_ERRORMODE=ignore".
2003-07-19 02:12:30 +04:00
|
|
|
switch (*p) {
|
|
|
|
case 'a':
|
|
|
|
pthread__diagassert |= DIAGASSERT_ABORT;
|
|
|
|
break;
|
|
|
|
case 'A':
|
|
|
|
pthread__diagassert &= ~DIAGASSERT_ABORT;
|
|
|
|
break;
|
|
|
|
case 'e':
|
|
|
|
pthread__diagassert |= DIAGASSERT_STDERR;
|
|
|
|
break;
|
|
|
|
case 'E':
|
|
|
|
pthread__diagassert &= ~DIAGASSERT_STDERR;
|
|
|
|
break;
|
|
|
|
case 'l':
|
|
|
|
pthread__diagassert |= DIAGASSERT_SYSLOG;
|
|
|
|
break;
|
|
|
|
case 'L':
|
|
|
|
pthread__diagassert &= ~DIAGASSERT_SYSLOG;
|
|
|
|
break;
|
|
|
|
}
|
2003-04-23 23:35:47 +04:00
|
|
|
}
|
|
|
|
|
2003-01-18 13:32:11 +03:00
|
|
|
/* Tell libc that we're here and it should role-play accordingly. */
|
2007-11-13 20:20:08 +03:00
|
|
|
pthread__first = first;
|
|
|
|
pthread_atfork(NULL, NULL, pthread__fork_callback);
|
2003-01-18 13:32:11 +03:00
|
|
|
__isthreaded = 1;
|
|
|
|
}
|
|
|
|
|
2007-11-13 20:20:08 +03:00
|
|
|
static void
|
|
|
|
pthread__fork_callback(void)
|
|
|
|
{
|
|
|
|
|
|
|
|
/* lwpctl state is not copied across fork. */
|
2007-12-01 04:07:34 +03:00
|
|
|
(void)_lwp_ctl(LWPCTL_FEATURE_CURCPU, &pthread__first->pt_lwpctl);
|
2007-11-13 20:20:08 +03:00
|
|
|
}
|
|
|
|
|
2003-04-08 01:29:48 +04:00
|
|
|
static void
|
|
|
|
pthread__child_callback(void)
|
|
|
|
{
|
2007-11-13 20:20:08 +03:00
|
|
|
|
2003-04-08 01:29:48 +04:00
|
|
|
/*
|
|
|
|
* Clean up data structures that a forked child process might
|
|
|
|
* trip over. Note that if threads have been created (causing
|
|
|
|
* this handler to be registered) the standards say that the
|
|
|
|
* child will trigger undefined behavior if it makes any
|
|
|
|
* pthread_* calls (or any other calls that aren't
|
|
|
|
* async-signal-safe), so we don't really have to clean up
|
|
|
|
* much. Anything that permits some pthread_* calls to work is
|
|
|
|
* merely being polite.
|
|
|
|
*/
|
|
|
|
pthread__started = 0;
|
|
|
|
}
|
2003-01-18 13:32:11 +03:00
|
|
|
|
2005-10-19 06:15:03 +04:00
|
|
|
static void
|
2003-01-18 13:32:11 +03:00
|
|
|
pthread__start(void)
|
|
|
|
{
|
|
|
|
|
2003-04-28 21:46:30 +04:00
|
|
|
/*
|
|
|
|
* Per-process timers are cleared by fork(); despite the
|
|
|
|
* various restrictions on fork() and threads, it's legal to
|
|
|
|
* fork() before creating any threads.
|
|
|
|
*/
|
2003-04-08 01:29:48 +04:00
|
|
|
pthread_atfork(NULL, NULL, pthread__child_callback);
|
2003-01-18 13:32:11 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* General-purpose thread data structure sanitization. */
|
2007-08-04 17:37:48 +04:00
|
|
|
/* ARGSUSED */
|
|
|
|
static void
|
|
|
|
pthread__initthread(pthread_t t)
|
2003-01-18 13:32:11 +03:00
|
|
|
{
|
|
|
|
|
2007-11-13 18:57:10 +03:00
|
|
|
t->pt_self = t;
|
2003-01-18 13:32:11 +03:00
|
|
|
t->pt_magic = PT_MAGIC;
|
2007-08-07 23:04:21 +04:00
|
|
|
t->pt_willpark = 0;
|
|
|
|
t->pt_unpark = 0;
|
|
|
|
t->pt_sleeponq = 0;
|
2007-09-07 18:09:27 +04:00
|
|
|
t->pt_nwaiters = 0;
|
2007-08-07 23:04:21 +04:00
|
|
|
t->pt_sleepobj = NULL;
|
|
|
|
t->pt_signalled = 0;
|
2007-08-16 16:01:49 +04:00
|
|
|
t->pt_havespecific = 0;
|
2007-09-07 18:09:27 +04:00
|
|
|
t->pt_early = NULL;
|
2007-11-13 20:20:08 +03:00
|
|
|
t->pt_lwpctl = &pthread__dummy_lwpctl;
|
|
|
|
t->pt_blocking = 0;
|
2007-12-24 17:46:28 +03:00
|
|
|
t->pt_droplock = NULL;
|
2006-12-23 08:14:46 +03:00
|
|
|
|
2007-11-13 18:57:10 +03:00
|
|
|
memcpy(&t->pt_lockops, pthread__lock_ops, sizeof(t->pt_lockops));
|
2007-09-09 02:49:50 +04:00
|
|
|
pthread_mutex_init(&t->pt_lock, NULL);
|
2003-01-18 13:32:11 +03:00
|
|
|
PTQ_INIT(&t->pt_cleanup_stack);
|
2007-12-24 17:46:28 +03:00
|
|
|
pthread_cond_init(&t->pt_joiners, NULL);
|
2007-12-01 04:07:34 +03:00
|
|
|
memset(&t->pt_specific, 0, sizeof(t->pt_specific));
|
2003-01-18 13:32:11 +03:00
|
|
|
}
|
|
|
|
|
2007-08-16 16:01:49 +04:00
|
|
|
static void
|
|
|
|
pthread__scrubthread(pthread_t t, char *name, int flags)
|
|
|
|
{
|
|
|
|
|
|
|
|
t->pt_state = PT_STATE_RUNNING;
|
|
|
|
t->pt_exitval = NULL;
|
|
|
|
t->pt_flags = flags;
|
|
|
|
t->pt_cancel = 0;
|
|
|
|
t->pt_errno = 0;
|
|
|
|
t->pt_name = name;
|
|
|
|
t->pt_lid = 0;
|
|
|
|
}
|
|
|
|
|
2003-01-18 13:32:11 +03:00
|
|
|
|
|
|
|
int
|
|
|
|
pthread_create(pthread_t *thread, const pthread_attr_t *attr,
|
|
|
|
void *(*startfunc)(void *), void *arg)
|
|
|
|
{
|
2007-08-16 17:54:16 +04:00
|
|
|
pthread_t newthread;
|
2003-01-18 13:32:11 +03:00
|
|
|
pthread_attr_t nattr;
|
2003-02-27 01:02:48 +03:00
|
|
|
struct pthread_attr_private *p;
|
2007-01-20 07:56:07 +03:00
|
|
|
char * volatile name;
|
2007-08-16 04:41:23 +04:00
|
|
|
unsigned long flag;
|
|
|
|
int ret;
|
2003-01-18 13:32:11 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* It's okay to check this without a lock because there can
|
|
|
|
* only be one thread before it becomes true.
|
|
|
|
*/
|
|
|
|
if (pthread__started == 0) {
|
|
|
|
pthread__start();
|
|
|
|
pthread__started = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (attr == NULL)
|
|
|
|
nattr = pthread_default_attr;
|
2003-01-29 17:03:08 +03:00
|
|
|
else if (attr->pta_magic == PT_ATTR_MAGIC)
|
2003-01-18 13:32:11 +03:00
|
|
|
nattr = *attr;
|
|
|
|
else
|
|
|
|
return EINVAL;
|
|
|
|
|
2003-02-27 01:02:48 +03:00
|
|
|
/* Fetch misc. attributes from the attr structure. */
|
2003-02-27 02:41:01 +03:00
|
|
|
name = NULL;
|
|
|
|
if ((p = nattr.pta_private) != NULL)
|
|
|
|
if (p->ptap_name[0] != '\0')
|
2003-02-27 01:02:48 +03:00
|
|
|
if ((name = strdup(p->ptap_name)) == NULL)
|
|
|
|
return ENOMEM;
|
2003-01-18 13:32:11 +03:00
|
|
|
|
2007-08-04 17:43:46 +04:00
|
|
|
newthread = NULL;
|
2003-01-18 13:32:11 +03:00
|
|
|
|
2007-08-16 16:01:49 +04:00
|
|
|
/*
|
|
|
|
* Try to reclaim a dead thread.
|
|
|
|
*/
|
2007-08-04 17:43:46 +04:00
|
|
|
if (!PTQ_EMPTY(&pthread__deadqueue)) {
|
2007-09-09 02:49:50 +04:00
|
|
|
pthread_mutex_lock(&pthread__deadqueue_lock);
|
2007-08-04 17:43:46 +04:00
|
|
|
newthread = PTQ_FIRST(&pthread__deadqueue);
|
|
|
|
if (newthread != NULL) {
|
2007-08-16 16:01:49 +04:00
|
|
|
PTQ_REMOVE(&pthread__deadqueue, newthread, pt_deadq);
|
2007-09-09 02:49:50 +04:00
|
|
|
pthread_mutex_unlock(&pthread__deadqueue_lock);
|
2007-12-24 17:46:28 +03:00
|
|
|
/* Still running? */
|
|
|
|
if (newthread->pt_lwpctl->lc_curcpu !=
|
|
|
|
LWPCTL_CPU_EXITED &&
|
|
|
|
(_lwp_kill(newthread->pt_lid, 0) == 0 ||
|
|
|
|
errno != ESRCH)) {
|
|
|
|
pthread_mutex_lock(&pthread__deadqueue_lock);
|
|
|
|
PTQ_INSERT_TAIL(&pthread__deadqueue,
|
|
|
|
newthread, pt_deadq);
|
|
|
|
pthread_mutex_unlock(&pthread__deadqueue_lock);
|
|
|
|
newthread = NULL;
|
2007-08-04 17:37:48 +04:00
|
|
|
}
|
|
|
|
} else
|
2007-09-09 02:49:50 +04:00
|
|
|
pthread_mutex_unlock(&pthread__deadqueue_lock);
|
2007-02-15 18:39:33 +03:00
|
|
|
}
|
2007-08-04 17:43:46 +04:00
|
|
|
|
2007-08-16 16:01:49 +04:00
|
|
|
/*
|
|
|
|
* If necessary set up a stack, allocate space for a pthread_st,
|
|
|
|
* and initialize it.
|
|
|
|
*/
|
2007-02-15 18:39:33 +03:00
|
|
|
if (newthread == NULL) {
|
2003-01-18 13:32:11 +03:00
|
|
|
ret = pthread__stackalloc(&newthread);
|
2003-12-18 18:39:56 +03:00
|
|
|
if (ret != 0) {
|
|
|
|
if (name)
|
|
|
|
free(name);
|
2003-01-18 13:32:11 +03:00
|
|
|
return ret;
|
2003-12-18 18:39:56 +03:00
|
|
|
}
|
2007-08-16 04:41:23 +04:00
|
|
|
|
2007-08-16 16:01:49 +04:00
|
|
|
/* This is used only when creating the thread. */
|
2007-08-16 04:41:23 +04:00
|
|
|
_INITCONTEXT_U(&newthread->pt_uc);
|
|
|
|
#ifdef PTHREAD_MACHINE_HAS_ID_REGISTER
|
|
|
|
pthread__uc_id(&newthread->pt_uc) = newthread;
|
|
|
|
#endif
|
|
|
|
newthread->pt_uc.uc_stack = newthread->pt_stack;
|
|
|
|
newthread->pt_uc.uc_link = NULL;
|
2007-08-16 16:01:49 +04:00
|
|
|
|
|
|
|
/* Add to list of all threads. */
|
2007-10-16 17:41:18 +04:00
|
|
|
pthread_rwlock_wrlock(&pthread__alltree_lock);
|
2007-10-16 19:07:02 +04:00
|
|
|
PTQ_INSERT_TAIL(&pthread__allqueue, newthread, pt_allq);
|
2007-10-16 17:41:18 +04:00
|
|
|
RB_INSERT(__pthread__alltree, &pthread__alltree, newthread);
|
|
|
|
pthread_rwlock_unlock(&pthread__alltree_lock);
|
2007-08-16 16:01:49 +04:00
|
|
|
|
|
|
|
/* Will be reset by the thread upon exit. */
|
|
|
|
pthread__initthread(newthread);
|
2003-01-18 13:32:11 +03:00
|
|
|
}
|
|
|
|
|
2007-08-16 16:01:49 +04:00
|
|
|
/*
|
|
|
|
* Create the new LWP.
|
|
|
|
*/
|
|
|
|
pthread__scrubthread(newthread, name, nattr.pta_flags);
|
2007-11-13 20:20:08 +03:00
|
|
|
makecontext(&newthread->pt_uc, pthread__create_tramp, 3,
|
|
|
|
newthread, startfunc, arg);
|
2003-01-18 13:32:11 +03:00
|
|
|
|
2007-12-24 17:46:28 +03:00
|
|
|
flag = LWP_DETACHED;
|
2006-12-24 21:39:45 +03:00
|
|
|
if ((newthread->pt_flags & PT_FLAG_SUSPENDED) != 0)
|
|
|
|
flag |= LWP_SUSPENDED;
|
2007-08-16 04:41:23 +04:00
|
|
|
ret = _lwp_create(&newthread->pt_uc, flag, &newthread->pt_lid);
|
2006-12-23 08:14:46 +03:00
|
|
|
if (ret != 0) {
|
|
|
|
free(name);
|
2007-08-16 16:01:49 +04:00
|
|
|
newthread->pt_state = PT_STATE_DEAD;
|
2007-09-09 02:49:50 +04:00
|
|
|
pthread_mutex_lock(&pthread__deadqueue_lock);
|
2007-08-16 16:01:49 +04:00
|
|
|
PTQ_INSERT_HEAD(&pthread__deadqueue, newthread, pt_deadq);
|
2007-09-09 02:49:50 +04:00
|
|
|
pthread_mutex_unlock(&pthread__deadqueue_lock);
|
2006-12-23 08:14:46 +03:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2003-01-18 13:32:11 +03:00
|
|
|
*thread = newthread;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
2007-11-13 20:20:08 +03:00
|
|
|
pthread__create_tramp(pthread_t self, void *(*start)(void *), void *arg)
|
2003-01-18 13:32:11 +03:00
|
|
|
{
|
|
|
|
void *retval;
|
|
|
|
|
2007-11-13 20:20:08 +03:00
|
|
|
#ifdef PTHREAD__HAVE_THREADREG
|
|
|
|
/* Set up identity register. */
|
|
|
|
pthread__threadreg_set(self);
|
|
|
|
#endif
|
|
|
|
|
2007-08-04 17:37:48 +04:00
|
|
|
/*
|
|
|
|
* Throw away some stack in a feeble attempt to reduce cache
|
|
|
|
* thrash. May help for SMT processors. XXX We should not
|
|
|
|
* be allocating stacks on fixed 2MB boundaries. Needs a
|
2007-11-07 03:55:22 +03:00
|
|
|
* thread register or decent thread local storage. Note
|
|
|
|
* that pt_lid may not be set by this point, but we don't
|
|
|
|
* care.
|
2007-08-04 17:37:48 +04:00
|
|
|
*/
|
2007-11-07 03:55:22 +03:00
|
|
|
(void)alloca(((unsigned)self->pt_lid & 7) << 8);
|
|
|
|
|
|
|
|
if (self->pt_name != NULL) {
|
|
|
|
pthread_mutex_lock(&self->pt_lock);
|
|
|
|
if (self->pt_name != NULL)
|
2007-11-13 20:20:08 +03:00
|
|
|
(void)_lwp_setname(0, self->pt_name);
|
2007-11-07 03:55:22 +03:00
|
|
|
pthread_mutex_unlock(&self->pt_lock);
|
|
|
|
}
|
2007-08-04 17:37:48 +04:00
|
|
|
|
2007-12-01 04:07:34 +03:00
|
|
|
(void)_lwp_ctl(LWPCTL_FEATURE_CURCPU, &self->pt_lwpctl);
|
2007-11-13 20:20:08 +03:00
|
|
|
|
2004-07-19 01:24:52 +04:00
|
|
|
retval = (*start)(arg);
|
2003-01-18 13:32:11 +03:00
|
|
|
|
|
|
|
pthread_exit(retval);
|
|
|
|
|
2003-05-27 19:24:24 +04:00
|
|
|
/*NOTREACHED*/
|
|
|
|
pthread__abort();
|
2003-01-18 13:32:11 +03:00
|
|
|
}
|
|
|
|
|
2003-11-09 21:56:48 +03:00
|
|
|
int
|
|
|
|
pthread_suspend_np(pthread_t thread)
|
|
|
|
{
|
2005-10-16 04:37:52 +04:00
|
|
|
pthread_t self;
|
|
|
|
|
|
|
|
self = pthread__self();
|
2003-11-09 21:56:48 +03:00
|
|
|
if (self == thread) {
|
|
|
|
return EDEADLK;
|
|
|
|
}
|
2007-08-16 17:54:16 +04:00
|
|
|
if (pthread__find(thread) != 0)
|
2005-10-16 04:37:52 +04:00
|
|
|
return ESRCH;
|
2007-08-17 18:28:31 +04:00
|
|
|
if (_lwp_suspend(thread->pt_lid) == 0)
|
|
|
|
return 0;
|
|
|
|
return errno;
|
2003-11-09 21:56:48 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
pthread_resume_np(pthread_t thread)
|
|
|
|
{
|
2007-08-16 17:54:16 +04:00
|
|
|
|
|
|
|
if (pthread__find(thread) != 0)
|
2005-10-16 04:37:52 +04:00
|
|
|
return ESRCH;
|
2007-08-17 18:28:31 +04:00
|
|
|
if (_lwp_continue(thread->pt_lid) == 0)
|
|
|
|
return 0;
|
|
|
|
return errno;
|
2003-11-09 21:56:48 +03:00
|
|
|
}
|
|
|
|
|
2003-01-18 13:32:11 +03:00
|
|
|
void
|
|
|
|
pthread_exit(void *retval)
|
|
|
|
{
|
2003-01-31 07:59:40 +03:00
|
|
|
pthread_t self;
|
2003-01-18 13:32:11 +03:00
|
|
|
struct pt_clean_t *cleanup;
|
2003-02-27 01:02:48 +03:00
|
|
|
char *name;
|
2003-01-18 13:32:11 +03:00
|
|
|
|
|
|
|
self = pthread__self();
|
|
|
|
|
|
|
|
/* Disable cancellability. */
|
2007-09-09 02:49:50 +04:00
|
|
|
pthread_mutex_lock(&self->pt_lock);
|
2003-01-18 13:32:11 +03:00
|
|
|
self->pt_flags |= PT_FLAG_CS_DISABLED;
|
2003-02-22 03:53:29 +03:00
|
|
|
self->pt_cancel = 0;
|
2003-01-18 13:32:11 +03:00
|
|
|
|
|
|
|
/* Call any cancellation cleanup handlers */
|
2007-12-24 17:46:28 +03:00
|
|
|
if (!PTQ_EMPTY(&self->pt_cleanup_stack)) {
|
|
|
|
pthread_mutex_unlock(&self->pt_lock);
|
|
|
|
while (!PTQ_EMPTY(&self->pt_cleanup_stack)) {
|
|
|
|
cleanup = PTQ_FIRST(&self->pt_cleanup_stack);
|
|
|
|
PTQ_REMOVE(&self->pt_cleanup_stack, cleanup, ptc_next);
|
|
|
|
(*cleanup->ptc_cleanup)(cleanup->ptc_arg);
|
|
|
|
}
|
|
|
|
pthread_mutex_lock(&self->pt_lock);
|
2003-01-18 13:32:11 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Perform cleanup of thread-specific data */
|
|
|
|
pthread__destroy_tsd(self);
|
|
|
|
|
2007-12-24 17:46:28 +03:00
|
|
|
/* Signal our exit. */
|
2003-01-18 13:32:11 +03:00
|
|
|
self->pt_exitval = retval;
|
2004-08-12 14:54:13 +04:00
|
|
|
if (self->pt_flags & PT_FLAG_DETACHED) {
|
|
|
|
self->pt_state = PT_STATE_DEAD;
|
2003-02-27 01:02:48 +03:00
|
|
|
name = self->pt_name;
|
|
|
|
self->pt_name = NULL;
|
2007-09-09 02:49:50 +04:00
|
|
|
pthread_mutex_unlock(&self->pt_lock);
|
2007-08-04 17:37:48 +04:00
|
|
|
if (name != NULL)
|
|
|
|
free(name);
|
2007-12-24 17:46:28 +03:00
|
|
|
pthread_mutex_lock(&pthread__deadqueue_lock);
|
|
|
|
PTQ_INSERT_TAIL(&pthread__deadqueue, self, pt_deadq);
|
|
|
|
pthread_mutex_unlock(&pthread__deadqueue_lock);
|
2006-12-23 08:14:46 +03:00
|
|
|
_lwp_exit();
|
2003-01-18 13:32:11 +03:00
|
|
|
} else {
|
2004-08-12 14:54:13 +04:00
|
|
|
self->pt_state = PT_STATE_ZOMBIE;
|
2007-12-24 17:46:28 +03:00
|
|
|
pthread_cond_broadcast(&self->pt_joiners);
|
2007-09-09 02:49:50 +04:00
|
|
|
pthread_mutex_unlock(&self->pt_lock);
|
2003-02-27 01:02:48 +03:00
|
|
|
/* Note: name will be freed by the joiner. */
|
2006-12-23 08:14:46 +03:00
|
|
|
_lwp_exit();
|
2003-01-18 13:32:11 +03:00
|
|
|
}
|
|
|
|
|
2003-05-27 19:24:24 +04:00
|
|
|
/*NOTREACHED*/
|
|
|
|
pthread__abort();
|
2003-01-18 13:32:11 +03:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
pthread_join(pthread_t thread, void **valptr)
|
|
|
|
{
|
|
|
|
pthread_t self;
|
2007-12-24 17:46:28 +03:00
|
|
|
int error;
|
2003-01-18 13:32:11 +03:00
|
|
|
|
|
|
|
self = pthread__self();
|
|
|
|
|
2007-08-16 17:54:16 +04:00
|
|
|
if (pthread__find(thread) != 0)
|
2003-01-18 13:32:11 +03:00
|
|
|
return ESRCH;
|
|
|
|
|
|
|
|
if (thread->pt_magic != PT_MAGIC)
|
|
|
|
return EINVAL;
|
|
|
|
|
|
|
|
if (thread == self)
|
|
|
|
return EDEADLK;
|
|
|
|
|
2007-12-24 17:46:28 +03:00
|
|
|
self->pt_droplock = &thread->pt_lock;
|
|
|
|
pthread_mutex_lock(&thread->pt_lock);
|
|
|
|
for (;;) {
|
|
|
|
if (thread->pt_state == PT_STATE_ZOMBIE)
|
|
|
|
break;
|
|
|
|
if (thread->pt_state == PT_STATE_DEAD) {
|
|
|
|
pthread_mutex_unlock(&thread->pt_lock);
|
|
|
|
self->pt_droplock = NULL;
|
|
|
|
return ESRCH;
|
|
|
|
}
|
|
|
|
if ((thread->pt_flags & PT_FLAG_DETACHED) != 0) {
|
|
|
|
pthread_mutex_unlock(&thread->pt_lock);
|
|
|
|
self->pt_droplock = NULL;
|
|
|
|
return EINVAL;
|
|
|
|
}
|
|
|
|
error = pthread_cond_wait(&thread->pt_joiners,
|
|
|
|
&thread->pt_lock);
|
2007-12-24 19:04:20 +03:00
|
|
|
if (error != 0) {
|
|
|
|
pthread__errorfunc(__FILE__, __LINE__,
|
|
|
|
__func__, "unexpected return from cond_wait()");
|
2007-12-24 17:46:28 +03:00
|
|
|
}
|
2007-12-24 19:04:20 +03:00
|
|
|
|
2007-08-16 02:48:52 +04:00
|
|
|
}
|
|
|
|
if (valptr != NULL)
|
|
|
|
*valptr = thread->pt_exitval;
|
2007-12-24 17:46:28 +03:00
|
|
|
/* pthread__reap() will drop the lock. */
|
|
|
|
pthread__reap(thread);
|
|
|
|
self->pt_droplock = NULL;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
pthread__reap(pthread_t thread)
|
|
|
|
{
|
|
|
|
char *name;
|
|
|
|
|
2007-08-16 02:48:52 +04:00
|
|
|
name = thread->pt_name;
|
|
|
|
thread->pt_name = NULL;
|
|
|
|
thread->pt_state = PT_STATE_DEAD;
|
2007-12-24 17:46:28 +03:00
|
|
|
pthread_mutex_unlock(&thread->pt_lock);
|
|
|
|
|
2007-09-09 02:49:50 +04:00
|
|
|
pthread_mutex_lock(&pthread__deadqueue_lock);
|
2007-08-16 16:01:49 +04:00
|
|
|
PTQ_INSERT_HEAD(&pthread__deadqueue, thread, pt_deadq);
|
2007-09-09 02:49:50 +04:00
|
|
|
pthread_mutex_unlock(&pthread__deadqueue_lock);
|
2007-12-24 17:46:28 +03:00
|
|
|
|
2007-08-16 02:48:52 +04:00
|
|
|
if (name != NULL)
|
|
|
|
free(name);
|
2003-01-18 13:32:11 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
pthread_equal(pthread_t t1, pthread_t t2)
|
|
|
|
{
|
|
|
|
|
|
|
|
/* Nothing special here. */
|
|
|
|
return (t1 == t2);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
pthread_detach(pthread_t thread)
|
|
|
|
{
|
|
|
|
|
2007-08-16 17:54:16 +04:00
|
|
|
if (pthread__find(thread) != 0)
|
2003-01-18 13:32:11 +03:00
|
|
|
return ESRCH;
|
|
|
|
|
|
|
|
if (thread->pt_magic != PT_MAGIC)
|
|
|
|
return EINVAL;
|
|
|
|
|
2007-09-09 02:49:50 +04:00
|
|
|
pthread_mutex_lock(&thread->pt_lock);
|
2007-02-22 01:31:38 +03:00
|
|
|
thread->pt_flags |= PT_FLAG_DETACHED;
|
2007-12-24 17:46:28 +03:00
|
|
|
if (thread->pt_state == PT_STATE_ZOMBIE) {
|
|
|
|
/* pthread__reap() will drop the lock. */
|
|
|
|
pthread__reap(thread);
|
|
|
|
} else {
|
|
|
|
/*
|
|
|
|
* Not valid for threads to be waiting in
|
|
|
|
* pthread_join() (there are intractable
|
|
|
|
* sync issues from the application
|
|
|
|
* perspective), but give those threads
|
|
|
|
* a chance anyway.
|
|
|
|
*/
|
|
|
|
pthread_cond_broadcast(&thread->pt_joiners);
|
|
|
|
pthread_mutex_unlock(&thread->pt_lock);
|
|
|
|
}
|
2007-03-02 21:53:51 +03:00
|
|
|
|
2007-12-24 17:46:28 +03:00
|
|
|
return 0;
|
2003-01-18 13:32:11 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-02-27 01:02:48 +03:00
|
|
|
int
|
|
|
|
pthread_getname_np(pthread_t thread, char *name, size_t len)
|
|
|
|
{
|
|
|
|
|
2007-08-16 17:54:16 +04:00
|
|
|
if (pthread__find(thread) != 0)
|
2003-02-27 01:02:48 +03:00
|
|
|
return ESRCH;
|
|
|
|
|
|
|
|
if (thread->pt_magic != PT_MAGIC)
|
|
|
|
return EINVAL;
|
|
|
|
|
2007-09-09 02:49:50 +04:00
|
|
|
pthread_mutex_lock(&thread->pt_lock);
|
2003-02-27 01:02:48 +03:00
|
|
|
if (thread->pt_name == NULL)
|
|
|
|
name[0] = '\0';
|
|
|
|
else
|
|
|
|
strlcpy(name, thread->pt_name, len);
|
2007-09-09 02:49:50 +04:00
|
|
|
pthread_mutex_unlock(&thread->pt_lock);
|
2003-02-27 01:02:48 +03:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
pthread_setname_np(pthread_t thread, const char *name, void *arg)
|
|
|
|
{
|
|
|
|
char *oldname, *cp, newname[PTHREAD_MAX_NAMELEN_NP];
|
|
|
|
int namelen;
|
|
|
|
|
2007-08-16 17:54:16 +04:00
|
|
|
if (pthread__find(thread) != 0)
|
2003-02-27 01:02:48 +03:00
|
|
|
return ESRCH;
|
|
|
|
|
|
|
|
if (thread->pt_magic != PT_MAGIC)
|
|
|
|
return EINVAL;
|
|
|
|
|
|
|
|
namelen = snprintf(newname, sizeof(newname), name, arg);
|
|
|
|
if (namelen >= PTHREAD_MAX_NAMELEN_NP)
|
|
|
|
return EINVAL;
|
|
|
|
|
|
|
|
cp = strdup(newname);
|
|
|
|
if (cp == NULL)
|
|
|
|
return ENOMEM;
|
|
|
|
|
2007-09-09 02:49:50 +04:00
|
|
|
pthread_mutex_lock(&thread->pt_lock);
|
2003-02-27 01:02:48 +03:00
|
|
|
oldname = thread->pt_name;
|
|
|
|
thread->pt_name = cp;
|
2007-11-07 03:55:22 +03:00
|
|
|
(void)_lwp_setname(thread->pt_lid, cp);
|
2007-09-09 02:49:50 +04:00
|
|
|
pthread_mutex_unlock(&thread->pt_lock);
|
2003-02-27 01:02:48 +03:00
|
|
|
|
|
|
|
if (oldname != NULL)
|
|
|
|
free(oldname);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2003-01-18 13:32:11 +03:00
|
|
|
/*
|
|
|
|
* XXX There should be a way for applications to use the efficent
|
|
|
|
* inline version, but there are opacity/namespace issues.
|
|
|
|
*/
|
|
|
|
pthread_t
|
|
|
|
pthread_self(void)
|
|
|
|
{
|
|
|
|
|
|
|
|
return pthread__self();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
pthread_cancel(pthread_t thread)
|
|
|
|
{
|
|
|
|
|
2007-08-16 17:54:16 +04:00
|
|
|
if (pthread__find(thread) != 0)
|
2005-10-16 04:37:52 +04:00
|
|
|
return ESRCH;
|
2007-09-09 02:49:50 +04:00
|
|
|
pthread_mutex_lock(&thread->pt_lock);
|
2006-12-23 08:14:46 +03:00
|
|
|
thread->pt_flags |= PT_FLAG_CS_PENDING;
|
|
|
|
if ((thread->pt_flags & PT_FLAG_CS_DISABLED) == 0) {
|
|
|
|
thread->pt_cancel = 1;
|
2007-09-09 02:49:50 +04:00
|
|
|
pthread_mutex_unlock(&thread->pt_lock);
|
2006-12-23 08:14:46 +03:00
|
|
|
_lwp_wakeup(thread->pt_lid);
|
|
|
|
} else
|
2007-09-09 02:49:50 +04:00
|
|
|
pthread_mutex_unlock(&thread->pt_lock);
|
2003-01-18 13:32:11 +03:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
pthread_setcancelstate(int state, int *oldstate)
|
|
|
|
{
|
|
|
|
pthread_t self;
|
2003-07-22 02:24:09 +04:00
|
|
|
int retval;
|
2003-01-18 13:32:11 +03:00
|
|
|
|
|
|
|
self = pthread__self();
|
2003-07-22 02:24:09 +04:00
|
|
|
retval = 0;
|
2003-01-18 13:32:11 +03:00
|
|
|
|
2007-09-09 02:49:50 +04:00
|
|
|
pthread_mutex_lock(&self->pt_lock);
|
2007-08-04 17:37:48 +04:00
|
|
|
|
2003-01-18 13:32:11 +03:00
|
|
|
if (oldstate != NULL) {
|
2003-07-22 02:24:09 +04:00
|
|
|
if (self->pt_flags & PT_FLAG_CS_DISABLED)
|
2003-01-18 13:32:11 +03:00
|
|
|
*oldstate = PTHREAD_CANCEL_DISABLE;
|
|
|
|
else
|
|
|
|
*oldstate = PTHREAD_CANCEL_ENABLE;
|
|
|
|
}
|
|
|
|
|
2003-07-22 02:24:09 +04:00
|
|
|
if (state == PTHREAD_CANCEL_DISABLE) {
|
|
|
|
self->pt_flags |= PT_FLAG_CS_DISABLED;
|
|
|
|
if (self->pt_cancel) {
|
|
|
|
self->pt_flags |= PT_FLAG_CS_PENDING;
|
|
|
|
self->pt_cancel = 0;
|
|
|
|
}
|
|
|
|
} else if (state == PTHREAD_CANCEL_ENABLE) {
|
|
|
|
self->pt_flags &= ~PT_FLAG_CS_DISABLED;
|
2003-01-18 13:32:11 +03:00
|
|
|
/*
|
|
|
|
* If a cancellation was requested while cancellation
|
|
|
|
* was disabled, note that fact for future
|
|
|
|
* cancellation tests.
|
|
|
|
*/
|
2003-07-22 02:24:09 +04:00
|
|
|
if (self->pt_flags & PT_FLAG_CS_PENDING) {
|
2003-01-18 13:32:11 +03:00
|
|
|
self->pt_cancel = 1;
|
|
|
|
/* This is not a deferred cancellation point. */
|
2003-07-22 02:24:09 +04:00
|
|
|
if (self->pt_flags & PT_FLAG_CS_ASYNC) {
|
2007-09-09 02:49:50 +04:00
|
|
|
pthread_mutex_unlock(&self->pt_lock);
|
2007-12-24 17:46:28 +03:00
|
|
|
pthread__cancelled();
|
2003-07-22 02:24:09 +04:00
|
|
|
}
|
2003-01-18 13:32:11 +03:00
|
|
|
}
|
|
|
|
} else
|
2003-07-22 02:24:09 +04:00
|
|
|
retval = EINVAL;
|
2003-01-18 13:32:11 +03:00
|
|
|
|
2007-09-09 02:49:50 +04:00
|
|
|
pthread_mutex_unlock(&self->pt_lock);
|
2007-08-04 17:37:48 +04:00
|
|
|
|
2003-07-22 02:24:09 +04:00
|
|
|
return retval;
|
2003-01-18 13:32:11 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
pthread_setcanceltype(int type, int *oldtype)
|
|
|
|
{
|
|
|
|
pthread_t self;
|
2003-07-22 02:24:09 +04:00
|
|
|
int retval;
|
2003-01-18 13:32:11 +03:00
|
|
|
|
|
|
|
self = pthread__self();
|
2003-07-22 02:24:09 +04:00
|
|
|
retval = 0;
|
|
|
|
|
2007-09-09 02:49:50 +04:00
|
|
|
pthread_mutex_lock(&self->pt_lock);
|
2003-01-18 13:32:11 +03:00
|
|
|
|
|
|
|
if (oldtype != NULL) {
|
2003-07-22 02:24:09 +04:00
|
|
|
if (self->pt_flags & PT_FLAG_CS_ASYNC)
|
2003-01-18 13:32:11 +03:00
|
|
|
*oldtype = PTHREAD_CANCEL_ASYNCHRONOUS;
|
|
|
|
else
|
|
|
|
*oldtype = PTHREAD_CANCEL_DEFERRED;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (type == PTHREAD_CANCEL_ASYNCHRONOUS) {
|
2003-07-22 02:24:09 +04:00
|
|
|
self->pt_flags |= PT_FLAG_CS_ASYNC;
|
|
|
|
if (self->pt_cancel) {
|
2007-09-09 02:49:50 +04:00
|
|
|
pthread_mutex_unlock(&self->pt_lock);
|
2007-12-24 17:46:28 +03:00
|
|
|
pthread__cancelled();
|
2003-07-22 02:24:09 +04:00
|
|
|
}
|
2003-01-18 13:32:11 +03:00
|
|
|
} else if (type == PTHREAD_CANCEL_DEFERRED)
|
2003-07-22 02:24:09 +04:00
|
|
|
self->pt_flags &= ~PT_FLAG_CS_ASYNC;
|
2003-01-18 13:32:11 +03:00
|
|
|
else
|
2003-07-22 02:24:09 +04:00
|
|
|
retval = EINVAL;
|
2003-01-18 13:32:11 +03:00
|
|
|
|
2007-09-09 02:49:50 +04:00
|
|
|
pthread_mutex_unlock(&self->pt_lock);
|
2007-08-04 17:37:48 +04:00
|
|
|
|
2003-07-22 02:24:09 +04:00
|
|
|
return retval;
|
2003-01-18 13:32:11 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
2007-12-24 17:46:28 +03:00
|
|
|
pthread_testcancel(void)
|
2003-01-18 13:32:11 +03:00
|
|
|
{
|
|
|
|
pthread_t self;
|
|
|
|
|
|
|
|
self = pthread__self();
|
|
|
|
if (self->pt_cancel)
|
2007-12-24 17:46:28 +03:00
|
|
|
pthread__cancelled();
|
2003-01-18 13:32:11 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* POSIX requires that certain functions return an error rather than
|
|
|
|
* invoking undefined behavior even when handed completely bogus
|
|
|
|
* pthread_t values, e.g. stack garbage or (pthread_t)666. This
|
|
|
|
* utility routine searches the list of threads for the pthread_t
|
|
|
|
* value without dereferencing it.
|
|
|
|
*/
|
|
|
|
int
|
2007-08-16 17:54:16 +04:00
|
|
|
pthread__find(pthread_t id)
|
2003-01-18 13:32:11 +03:00
|
|
|
{
|
|
|
|
pthread_t target;
|
|
|
|
|
2007-10-16 17:41:18 +04:00
|
|
|
pthread_rwlock_rdlock(&pthread__alltree_lock);
|
|
|
|
/* LINTED */
|
|
|
|
target = RB_FIND(__pthread__alltree, &pthread__alltree, id);
|
|
|
|
pthread_rwlock_unlock(&pthread__alltree_lock);
|
2003-01-18 13:32:11 +03:00
|
|
|
|
2007-08-16 16:01:49 +04:00
|
|
|
if (target == NULL || target->pt_state == PT_STATE_DEAD)
|
2003-01-18 13:32:11 +03:00
|
|
|
return ESRCH;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
pthread__testcancel(pthread_t self)
|
|
|
|
{
|
|
|
|
|
|
|
|
if (self->pt_cancel)
|
2007-12-24 17:46:28 +03:00
|
|
|
pthread__cancelled();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
pthread__cancelled(void)
|
|
|
|
{
|
|
|
|
pthread_mutex_t *droplock;
|
|
|
|
pthread_t self;
|
|
|
|
|
|
|
|
self = pthread__self();
|
|
|
|
droplock = self->pt_droplock;
|
|
|
|
self->pt_droplock = NULL;
|
|
|
|
|
|
|
|
if (droplock != NULL && pthread_mutex_held_np(droplock))
|
|
|
|
pthread_mutex_unlock(droplock);
|
|
|
|
|
|
|
|
pthread_exit(PTHREAD_CANCELED);
|
2003-01-18 13:32:11 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
pthread__cleanup_push(void (*cleanup)(void *), void *arg, void *store)
|
|
|
|
{
|
|
|
|
pthread_t self;
|
|
|
|
struct pt_clean_t *entry;
|
|
|
|
|
|
|
|
self = pthread__self();
|
|
|
|
entry = store;
|
|
|
|
entry->ptc_cleanup = cleanup;
|
|
|
|
entry->ptc_arg = arg;
|
|
|
|
PTQ_INSERT_HEAD(&self->pt_cleanup_stack, entry, ptc_next);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
pthread__cleanup_pop(int ex, void *store)
|
|
|
|
{
|
|
|
|
pthread_t self;
|
|
|
|
struct pt_clean_t *entry;
|
|
|
|
|
|
|
|
self = pthread__self();
|
|
|
|
entry = store;
|
|
|
|
|
|
|
|
PTQ_REMOVE(&self->pt_cleanup_stack, entry, ptc_next);
|
|
|
|
if (ex)
|
|
|
|
(*entry->ptc_cleanup)(entry->ptc_arg);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int *
|
|
|
|
pthread__errno(void)
|
|
|
|
{
|
|
|
|
pthread_t self;
|
|
|
|
|
|
|
|
self = pthread__self();
|
|
|
|
|
|
|
|
return &(self->pt_errno);
|
|
|
|
}
|
2003-02-15 07:34:40 +03:00
|
|
|
|
2003-07-22 02:17:14 +04:00
|
|
|
ssize_t _sys_write(int, const void *, size_t);
|
|
|
|
|
2003-02-15 07:34:40 +03:00
|
|
|
void
|
2004-06-25 20:33:32 +04:00
|
|
|
pthread__assertfunc(const char *file, int line, const char *function,
|
|
|
|
const char *expr)
|
2003-02-15 07:34:40 +03:00
|
|
|
{
|
|
|
|
char buf[1024];
|
|
|
|
int len;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* snprintf should not acquire any locks, or we could
|
|
|
|
* end up deadlocked if the assert caller held locks.
|
|
|
|
*/
|
|
|
|
len = snprintf(buf, 1024,
|
|
|
|
"assertion \"%s\" failed: file \"%s\", line %d%s%s%s\n",
|
|
|
|
expr, file, line,
|
|
|
|
function ? ", function \"" : "",
|
|
|
|
function ? function : "",
|
|
|
|
function ? "\"" : "");
|
|
|
|
|
2003-07-22 02:17:14 +04:00
|
|
|
_sys_write(STDERR_FILENO, buf, (size_t)len);
|
2003-02-15 07:34:40 +03:00
|
|
|
(void)kill(getpid(), SIGABRT);
|
|
|
|
|
|
|
|
_exit(1);
|
|
|
|
}
|
2003-04-23 23:35:47 +04:00
|
|
|
|
|
|
|
|
|
|
|
void
|
2004-06-25 20:33:32 +04:00
|
|
|
pthread__errorfunc(const char *file, int line, const char *function,
|
|
|
|
const char *msg)
|
2003-04-23 23:35:47 +04:00
|
|
|
{
|
|
|
|
char buf[1024];
|
Implement a bunch of pthread_attr_() functions, which genuinely set and examine
pthread_attr_t objects, although most of the properties being set don't really
affect threads yet:
pthread_attr_{get,set}guardsize()
pthread_attr_{get,set}inheritsched()
pthread_attr_{get,set}scope()
pthread_attr_{get,set}stack()
pthread_attr_setstack{size,addr}()
Remove some useless assertions and error checks in the existing pthread_attr()
routines.
Implement pthread_attr_get_np(), to examine the attributes of an existing
thread. Idea and interface from FreeBSD.
Change PTHREAD_ERRORMODE environment variable to PTHREAD_DIAGASSERT, and
make it behave like libc's LIBC_DIAGASSERT. The way to disable error-checking
and aborting is now "PTHREAD_DIAGASSERT=AEL", rather than
"PTHREAD_ERRORMODE=ignore".
2003-07-19 02:12:30 +04:00
|
|
|
size_t len;
|
2003-04-23 23:35:47 +04:00
|
|
|
|
Implement a bunch of pthread_attr_() functions, which genuinely set and examine
pthread_attr_t objects, although most of the properties being set don't really
affect threads yet:
pthread_attr_{get,set}guardsize()
pthread_attr_{get,set}inheritsched()
pthread_attr_{get,set}scope()
pthread_attr_{get,set}stack()
pthread_attr_setstack{size,addr}()
Remove some useless assertions and error checks in the existing pthread_attr()
routines.
Implement pthread_attr_get_np(), to examine the attributes of an existing
thread. Idea and interface from FreeBSD.
Change PTHREAD_ERRORMODE environment variable to PTHREAD_DIAGASSERT, and
make it behave like libc's LIBC_DIAGASSERT. The way to disable error-checking
and aborting is now "PTHREAD_DIAGASSERT=AEL", rather than
"PTHREAD_ERRORMODE=ignore".
2003-07-19 02:12:30 +04:00
|
|
|
if (pthread__diagassert == 0)
|
2003-04-23 23:35:47 +04:00
|
|
|
return;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* snprintf should not acquire any locks, or we could
|
|
|
|
* end up deadlocked if the assert caller held locks.
|
|
|
|
*/
|
|
|
|
len = snprintf(buf, 1024,
|
Implement a bunch of pthread_attr_() functions, which genuinely set and examine
pthread_attr_t objects, although most of the properties being set don't really
affect threads yet:
pthread_attr_{get,set}guardsize()
pthread_attr_{get,set}inheritsched()
pthread_attr_{get,set}scope()
pthread_attr_{get,set}stack()
pthread_attr_setstack{size,addr}()
Remove some useless assertions and error checks in the existing pthread_attr()
routines.
Implement pthread_attr_get_np(), to examine the attributes of an existing
thread. Idea and interface from FreeBSD.
Change PTHREAD_ERRORMODE environment variable to PTHREAD_DIAGASSERT, and
make it behave like libc's LIBC_DIAGASSERT. The way to disable error-checking
and aborting is now "PTHREAD_DIAGASSERT=AEL", rather than
"PTHREAD_ERRORMODE=ignore".
2003-07-19 02:12:30 +04:00
|
|
|
"%s: Error detected by libpthread: %s.\n"
|
|
|
|
"Detected by file \"%s\", line %d%s%s%s.\n"
|
|
|
|
"See pthread(3) for information.\n",
|
|
|
|
getprogname(), msg, file, line,
|
2003-04-23 23:35:47 +04:00
|
|
|
function ? ", function \"" : "",
|
|
|
|
function ? function : "",
|
Implement a bunch of pthread_attr_() functions, which genuinely set and examine
pthread_attr_t objects, although most of the properties being set don't really
affect threads yet:
pthread_attr_{get,set}guardsize()
pthread_attr_{get,set}inheritsched()
pthread_attr_{get,set}scope()
pthread_attr_{get,set}stack()
pthread_attr_setstack{size,addr}()
Remove some useless assertions and error checks in the existing pthread_attr()
routines.
Implement pthread_attr_get_np(), to examine the attributes of an existing
thread. Idea and interface from FreeBSD.
Change PTHREAD_ERRORMODE environment variable to PTHREAD_DIAGASSERT, and
make it behave like libc's LIBC_DIAGASSERT. The way to disable error-checking
and aborting is now "PTHREAD_DIAGASSERT=AEL", rather than
"PTHREAD_ERRORMODE=ignore".
2003-07-19 02:12:30 +04:00
|
|
|
function ? "\"" : "");
|
2003-04-23 23:35:47 +04:00
|
|
|
|
Implement a bunch of pthread_attr_() functions, which genuinely set and examine
pthread_attr_t objects, although most of the properties being set don't really
affect threads yet:
pthread_attr_{get,set}guardsize()
pthread_attr_{get,set}inheritsched()
pthread_attr_{get,set}scope()
pthread_attr_{get,set}stack()
pthread_attr_setstack{size,addr}()
Remove some useless assertions and error checks in the existing pthread_attr()
routines.
Implement pthread_attr_get_np(), to examine the attributes of an existing
thread. Idea and interface from FreeBSD.
Change PTHREAD_ERRORMODE environment variable to PTHREAD_DIAGASSERT, and
make it behave like libc's LIBC_DIAGASSERT. The way to disable error-checking
and aborting is now "PTHREAD_DIAGASSERT=AEL", rather than
"PTHREAD_ERRORMODE=ignore".
2003-07-19 02:12:30 +04:00
|
|
|
if (pthread__diagassert & DIAGASSERT_STDERR)
|
2003-07-22 02:17:14 +04:00
|
|
|
_sys_write(STDERR_FILENO, buf, len);
|
2003-04-23 23:35:47 +04:00
|
|
|
|
Implement a bunch of pthread_attr_() functions, which genuinely set and examine
pthread_attr_t objects, although most of the properties being set don't really
affect threads yet:
pthread_attr_{get,set}guardsize()
pthread_attr_{get,set}inheritsched()
pthread_attr_{get,set}scope()
pthread_attr_{get,set}stack()
pthread_attr_setstack{size,addr}()
Remove some useless assertions and error checks in the existing pthread_attr()
routines.
Implement pthread_attr_get_np(), to examine the attributes of an existing
thread. Idea and interface from FreeBSD.
Change PTHREAD_ERRORMODE environment variable to PTHREAD_DIAGASSERT, and
make it behave like libc's LIBC_DIAGASSERT. The way to disable error-checking
and aborting is now "PTHREAD_DIAGASSERT=AEL", rather than
"PTHREAD_ERRORMODE=ignore".
2003-07-19 02:12:30 +04:00
|
|
|
if (pthread__diagassert & DIAGASSERT_SYSLOG)
|
|
|
|
syslog(LOG_DEBUG | LOG_USER, "%s", buf);
|
|
|
|
|
|
|
|
if (pthread__diagassert & DIAGASSERT_ABORT) {
|
|
|
|
(void)kill(getpid(), SIGABRT);
|
2003-04-23 23:35:47 +04:00
|
|
|
_exit(1);
|
|
|
|
}
|
|
|
|
}
|
2006-12-23 08:14:46 +03:00
|
|
|
|
2006-12-23 12:48:18 +03:00
|
|
|
/*
|
2006-12-24 21:39:45 +03:00
|
|
|
* Thread park/unpark operations. The kernel operations are
|
|
|
|
* modelled after a brief description from "Multithreading in
|
|
|
|
* the Solaris Operating Environment":
|
2006-12-23 12:48:18 +03:00
|
|
|
*
|
|
|
|
* http://www.sun.com/software/whitepapers/solaris9/multithread.pdf
|
|
|
|
*/
|
|
|
|
|
2006-12-23 08:14:46 +03:00
|
|
|
#define OOPS(msg) \
|
2007-02-01 02:55:20 +03:00
|
|
|
pthread__errorfunc(__FILE__, __LINE__, __func__, msg)
|
2006-12-23 08:14:46 +03:00
|
|
|
|
|
|
|
int
|
|
|
|
pthread__park(pthread_t self, pthread_spin_t *lock,
|
2007-08-04 17:37:48 +04:00
|
|
|
pthread_queue_t *queue, const struct timespec *abstime,
|
|
|
|
int cancelpt, const void *hint)
|
2006-12-23 08:14:46 +03:00
|
|
|
{
|
2007-08-07 23:04:21 +04:00
|
|
|
int rv, error;
|
2007-09-07 18:09:27 +04:00
|
|
|
void *obj;
|
2006-12-23 08:14:46 +03:00
|
|
|
|
2007-08-07 23:04:21 +04:00
|
|
|
/* Clear the willpark flag, since we're about to block. */
|
|
|
|
self->pt_willpark = 0;
|
|
|
|
|
2007-11-13 20:20:08 +03:00
|
|
|
/*
|
|
|
|
* For non-interlocked release of mutexes we need a store
|
|
|
|
* barrier before incrementing pt_blocking away from zero.
|
|
|
|
* This is provided by the caller (it will release an
|
|
|
|
* interlock, or do an explicit barrier).
|
|
|
|
*/
|
|
|
|
self->pt_blocking++;
|
|
|
|
|
2006-12-24 21:39:45 +03:00
|
|
|
/*
|
|
|
|
* Wait until we are awoken by a pending unpark operation,
|
|
|
|
* a signal, an unpark posted after we have gone asleep,
|
|
|
|
* or an expired timeout.
|
2007-08-04 17:37:48 +04:00
|
|
|
*
|
|
|
|
* It is fine to test the value of both pt_sleepobj and
|
|
|
|
* pt_sleeponq without holding any locks, because:
|
|
|
|
*
|
|
|
|
* o Only the blocking thread (this thread) ever sets them
|
|
|
|
* to a non-NULL value.
|
|
|
|
*
|
|
|
|
* o Other threads may set them NULL, but if they do so they
|
|
|
|
* must also make this thread return from _lwp_park.
|
|
|
|
*
|
|
|
|
* o _lwp_park, _lwp_unpark and _lwp_unpark_all are system
|
|
|
|
* calls and all make use of spinlocks in the kernel. So
|
|
|
|
* these system calls act as full memory barriers, and will
|
|
|
|
* ensure that the calling CPU's store buffers are drained.
|
|
|
|
* In combination with the spinlock release before unpark,
|
|
|
|
* this means that modification of pt_sleepobj/onq by another
|
|
|
|
* thread will become globally visible before that thread
|
|
|
|
* schedules an unpark operation on this thread.
|
2007-08-07 23:04:21 +04:00
|
|
|
*
|
|
|
|
* Note: the test in the while() statement dodges the park op if
|
|
|
|
* we have already been awoken, unless there is another thread to
|
|
|
|
* awaken. This saves a syscall - if we were already awakened,
|
|
|
|
* the next call to _lwp_park() would need to return early in order
|
|
|
|
* to eat the previous wakeup.
|
2006-12-24 21:39:45 +03:00
|
|
|
*/
|
|
|
|
rv = 0;
|
2007-08-07 23:04:21 +04:00
|
|
|
while ((self->pt_sleepobj != NULL || self->pt_unpark != 0) && rv == 0) {
|
|
|
|
/*
|
|
|
|
* If we deferred unparking a thread, arrange to
|
|
|
|
* have _lwp_park() restart it before blocking.
|
|
|
|
*/
|
|
|
|
error = _lwp_park(abstime, self->pt_unpark, hint,
|
|
|
|
self->pt_unparkhint);
|
|
|
|
self->pt_unpark = 0;
|
|
|
|
if (error != 0) {
|
2006-12-24 21:39:45 +03:00
|
|
|
switch (rv = errno) {
|
|
|
|
case EINTR:
|
|
|
|
case EALREADY:
|
|
|
|
rv = 0;
|
|
|
|
break;
|
|
|
|
case ETIMEDOUT:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
OOPS("_lwp_park failed");
|
|
|
|
break;
|
|
|
|
}
|
2006-12-23 08:14:46 +03:00
|
|
|
}
|
2007-03-15 02:33:42 +03:00
|
|
|
/* Check for cancellation. */
|
2007-08-16 17:54:16 +04:00
|
|
|
if (cancelpt && self->pt_cancel)
|
|
|
|
rv = EINTR;
|
2007-08-04 17:37:48 +04:00
|
|
|
}
|
2006-12-23 08:14:46 +03:00
|
|
|
|
2006-12-24 21:39:45 +03:00
|
|
|
/*
|
|
|
|
* If we have been awoken early but are still on the queue,
|
2007-08-04 17:37:48 +04:00
|
|
|
* then remove ourself. Again, it's safe to do the test
|
|
|
|
* without holding any locks.
|
2006-12-24 21:39:45 +03:00
|
|
|
*/
|
2007-09-07 18:09:27 +04:00
|
|
|
if (__predict_false(self->pt_sleeponq)) {
|
2007-11-13 18:57:10 +03:00
|
|
|
pthread__spinlock(self, lock);
|
2007-08-04 17:37:48 +04:00
|
|
|
if (self->pt_sleeponq) {
|
|
|
|
PTQ_REMOVE(queue, self, pt_sleep);
|
2007-09-07 18:09:27 +04:00
|
|
|
obj = self->pt_sleepobj;
|
2007-08-04 17:37:48 +04:00
|
|
|
self->pt_sleepobj = NULL;
|
|
|
|
self->pt_sleeponq = 0;
|
2007-09-07 18:09:27 +04:00
|
|
|
if (obj != NULL && self->pt_early != NULL)
|
|
|
|
(*self->pt_early)(obj);
|
2007-08-04 17:37:48 +04:00
|
|
|
}
|
2007-11-13 18:57:10 +03:00
|
|
|
pthread__spinunlock(self, lock);
|
2007-03-06 02:55:40 +03:00
|
|
|
}
|
2007-09-07 18:09:27 +04:00
|
|
|
self->pt_early = NULL;
|
2007-11-13 20:20:08 +03:00
|
|
|
self->pt_blocking--;
|
2006-12-23 08:14:46 +03:00
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2007-03-06 02:55:40 +03:00
|
|
|
pthread__unpark(pthread_t self, pthread_spin_t *lock,
|
2007-08-04 17:37:48 +04:00
|
|
|
pthread_queue_t *queue, pthread_t target)
|
2006-12-23 08:14:46 +03:00
|
|
|
{
|
|
|
|
int rv;
|
|
|
|
|
2007-03-15 02:33:42 +03:00
|
|
|
if (target == NULL) {
|
2007-11-13 18:57:10 +03:00
|
|
|
pthread__spinunlock(self, lock);
|
2007-03-15 02:33:42 +03:00
|
|
|
return;
|
|
|
|
}
|
2006-12-23 08:14:46 +03:00
|
|
|
|
2007-03-15 02:33:42 +03:00
|
|
|
/*
|
|
|
|
* Easy: the thread has already been removed from
|
|
|
|
* the queue, so just awaken it.
|
|
|
|
*/
|
|
|
|
target->pt_sleepobj = NULL;
|
|
|
|
target->pt_sleeponq = 0;
|
2007-08-04 17:37:48 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Releasing the spinlock serves as a store barrier,
|
|
|
|
* which ensures that all our modifications are visible
|
|
|
|
* to the thread in pthread__park() before the unpark
|
|
|
|
* operation is set in motion.
|
|
|
|
*/
|
2007-11-13 18:57:10 +03:00
|
|
|
pthread__spinunlock(self, lock);
|
2007-03-15 02:33:42 +03:00
|
|
|
|
2007-08-07 23:04:21 +04:00
|
|
|
/*
|
|
|
|
* If the calling thread is about to block, defer
|
|
|
|
* unparking the target until _lwp_park() is called.
|
|
|
|
*/
|
|
|
|
if (self->pt_willpark && self->pt_unpark == 0) {
|
|
|
|
self->pt_unpark = target->pt_lid;
|
|
|
|
self->pt_unparkhint = queue;
|
|
|
|
} else {
|
|
|
|
rv = _lwp_unpark(target->pt_lid, queue);
|
|
|
|
if (rv != 0 && errno != EALREADY && errno != EINTR) {
|
|
|
|
OOPS("_lwp_unpark failed");
|
|
|
|
}
|
2007-03-15 02:33:42 +03:00
|
|
|
}
|
2006-12-23 08:14:46 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2007-03-06 02:55:40 +03:00
|
|
|
pthread__unpark_all(pthread_t self, pthread_spin_t *lock,
|
2007-08-04 17:37:48 +04:00
|
|
|
pthread_queue_t *queue)
|
2006-12-23 08:14:46 +03:00
|
|
|
{
|
2007-03-02 21:58:45 +03:00
|
|
|
ssize_t n, rv;
|
2006-12-24 21:39:45 +03:00
|
|
|
pthread_t thread, next;
|
2007-09-07 18:09:27 +04:00
|
|
|
void *wakeobj;
|
2006-12-24 21:39:45 +03:00
|
|
|
|
2007-09-07 18:09:27 +04:00
|
|
|
if (PTQ_EMPTY(queue) && self->pt_nwaiters == 0) {
|
2007-11-13 18:57:10 +03:00
|
|
|
pthread__spinunlock(self, lock);
|
2006-12-24 21:39:45 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2007-09-07 18:09:27 +04:00
|
|
|
wakeobj = queue;
|
2006-12-23 08:14:46 +03:00
|
|
|
|
2007-12-04 19:08:28 +03:00
|
|
|
for (;;) {
|
2007-09-07 18:09:27 +04:00
|
|
|
/*
|
|
|
|
* Pull waiters from the queue and add to this
|
|
|
|
* thread's waiters list.
|
|
|
|
*/
|
2006-12-24 21:39:45 +03:00
|
|
|
thread = PTQ_FIRST(queue);
|
2007-09-07 18:09:27 +04:00
|
|
|
for (n = self->pt_nwaiters, self->pt_nwaiters = 0;
|
|
|
|
n < pthread__unpark_max && thread != NULL;
|
2006-12-24 21:39:45 +03:00
|
|
|
thread = next) {
|
|
|
|
/*
|
|
|
|
* If the sleepobj pointer is non-NULL, it
|
|
|
|
* means one of two things:
|
|
|
|
*
|
|
|
|
* o The thread has awoken early, spun
|
|
|
|
* through application code and is
|
|
|
|
* once more asleep on this object.
|
|
|
|
*
|
|
|
|
* o This is a new thread that has blocked
|
|
|
|
* on the object after we have released
|
|
|
|
* the interlock in this loop.
|
|
|
|
*
|
|
|
|
* In both cases we shouldn't remove the
|
|
|
|
* thread from the queue.
|
|
|
|
*/
|
|
|
|
next = PTQ_NEXT(thread, pt_sleep);
|
2007-09-07 18:09:27 +04:00
|
|
|
if (thread->pt_sleepobj != wakeobj)
|
|
|
|
continue;
|
|
|
|
thread->pt_sleepobj = NULL;
|
2006-12-24 21:39:45 +03:00
|
|
|
thread->pt_sleeponq = 0;
|
2007-09-07 18:09:27 +04:00
|
|
|
self->pt_waiters[n++] = thread->pt_lid;
|
2006-12-23 08:14:46 +03:00
|
|
|
PTQ_REMOVE(queue, thread, pt_sleep);
|
|
|
|
}
|
2006-12-24 21:39:45 +03:00
|
|
|
|
2007-08-04 17:37:48 +04:00
|
|
|
/*
|
|
|
|
* Releasing the spinlock serves as a store barrier,
|
|
|
|
* which ensures that all our modifications are visible
|
|
|
|
* to the thread in pthread__park() before the unpark
|
|
|
|
* operation is set in motion.
|
|
|
|
*/
|
2006-12-24 21:39:45 +03:00
|
|
|
switch (n) {
|
2006-12-23 08:14:46 +03:00
|
|
|
case 0:
|
2007-11-13 18:57:10 +03:00
|
|
|
pthread__spinunlock(self, lock);
|
2006-12-23 08:14:46 +03:00
|
|
|
return;
|
|
|
|
case 1:
|
2007-08-07 23:04:21 +04:00
|
|
|
/*
|
|
|
|
* If the calling thread is about to block,
|
|
|
|
* defer unparking the target until _lwp_park()
|
|
|
|
* is called.
|
|
|
|
*/
|
2007-11-13 18:57:10 +03:00
|
|
|
pthread__spinunlock(self, lock);
|
2007-08-07 23:04:21 +04:00
|
|
|
if (self->pt_willpark && self->pt_unpark == 0) {
|
2007-09-07 18:09:27 +04:00
|
|
|
self->pt_unpark = self->pt_waiters[0];
|
2007-08-07 23:04:21 +04:00
|
|
|
self->pt_unparkhint = queue;
|
|
|
|
return;
|
|
|
|
}
|
2007-09-07 18:09:27 +04:00
|
|
|
rv = (ssize_t)_lwp_unpark(self->pt_waiters[0], queue);
|
2006-12-23 08:14:46 +03:00
|
|
|
if (rv != 0 && errno != EALREADY && errno != EINTR) {
|
|
|
|
OOPS("_lwp_unpark failed");
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
default:
|
2007-09-07 18:09:27 +04:00
|
|
|
/*
|
|
|
|
* Clear all sleepobj pointers, since we
|
|
|
|
* release the spin lock before awkening
|
|
|
|
* everybody, and must synchronise with
|
|
|
|
* pthread__park().
|
|
|
|
*/
|
|
|
|
while (thread != NULL) {
|
|
|
|
thread->pt_sleepobj = NULL;
|
|
|
|
thread = PTQ_NEXT(thread, pt_sleep);
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* Now only interested in waking threads
|
|
|
|
* marked to be woken (sleepobj == NULL).
|
|
|
|
*/
|
|
|
|
wakeobj = NULL;
|
2007-11-13 18:57:10 +03:00
|
|
|
pthread__spinunlock(self, lock);
|
2007-09-07 18:09:27 +04:00
|
|
|
rv = _lwp_unpark_all(self->pt_waiters, (size_t)n,
|
|
|
|
queue);
|
2006-12-23 08:14:46 +03:00
|
|
|
if (rv != 0 && errno != EINTR) {
|
|
|
|
OOPS("_lwp_unpark_all failed");
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2007-11-13 18:57:10 +03:00
|
|
|
pthread__spinlock(self, lock);
|
2006-12-23 08:14:46 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#undef OOPS
|
2007-08-16 05:09:34 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Allocate a stack for a thread, and set it up. It needs to be aligned, so
|
|
|
|
* that a thread can find itself by its stack pointer.
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
pthread__stackalloc(pthread_t *newt)
|
|
|
|
{
|
|
|
|
void *addr;
|
|
|
|
|
|
|
|
addr = mmap(NULL, pthread__stacksize, PROT_READ|PROT_WRITE,
|
|
|
|
MAP_ANON|MAP_PRIVATE | MAP_ALIGNED(pthread__stacksize_lg),
|
|
|
|
-1, (off_t)0);
|
|
|
|
|
|
|
|
if (addr == MAP_FAILED)
|
|
|
|
return ENOMEM;
|
|
|
|
|
|
|
|
pthread__assert(((intptr_t)addr & pthread__stackmask) == 0);
|
|
|
|
|
|
|
|
return pthread__stackid_setup(addr, pthread__stacksize, newt);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Set up the slightly special stack for the "initial" thread, which
|
|
|
|
* runs on the normal system stack, and thus gets slightly different
|
|
|
|
* treatment.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
pthread__initmain(pthread_t *newt)
|
|
|
|
{
|
|
|
|
struct rlimit slimit;
|
|
|
|
size_t pagesize;
|
|
|
|
pthread_t t;
|
|
|
|
void *base;
|
|
|
|
size_t size;
|
|
|
|
int error, ret;
|
|
|
|
char *value;
|
|
|
|
|
|
|
|
pagesize = (size_t)sysconf(_SC_PAGESIZE);
|
|
|
|
pthread__stacksize = 0;
|
|
|
|
ret = getrlimit(RLIMIT_STACK, &slimit);
|
|
|
|
if (ret == -1)
|
|
|
|
err(1, "Couldn't get stack resource consumption limits");
|
2007-11-13 18:57:10 +03:00
|
|
|
|
|
|
|
value = pthread__getenv("PTHREAD_STACKSIZE");
|
|
|
|
if (value != NULL) {
|
2007-08-16 05:09:34 +04:00
|
|
|
pthread__stacksize = atoi(value) * 1024;
|
|
|
|
if (pthread__stacksize > slimit.rlim_cur)
|
|
|
|
pthread__stacksize = (size_t)slimit.rlim_cur;
|
|
|
|
}
|
|
|
|
if (pthread__stacksize == 0)
|
|
|
|
pthread__stacksize = (size_t)slimit.rlim_cur;
|
|
|
|
if (pthread__stacksize < 4 * pagesize)
|
|
|
|
errx(1, "Stacksize limit is too low, minimum %zd kbyte.",
|
|
|
|
4 * pagesize / 1024);
|
|
|
|
|
|
|
|
pthread__stacksize_lg = -1;
|
|
|
|
while (pthread__stacksize) {
|
|
|
|
pthread__stacksize >>= 1;
|
|
|
|
pthread__stacksize_lg++;
|
|
|
|
}
|
|
|
|
|
|
|
|
pthread__stacksize = (1 << pthread__stacksize_lg);
|
|
|
|
pthread__stackmask = pthread__stacksize - 1;
|
2007-09-09 02:49:50 +04:00
|
|
|
pthread__threadmask = ~pthread__stackmask;
|
2007-08-16 05:09:34 +04:00
|
|
|
|
2007-09-09 02:49:50 +04:00
|
|
|
base = (void *)(pthread__sp() & pthread__threadmask);
|
2007-08-16 05:09:34 +04:00
|
|
|
size = pthread__stacksize;
|
|
|
|
|
|
|
|
error = pthread__stackid_setup(base, size, &t);
|
|
|
|
if (error) {
|
|
|
|
/* XXX */
|
|
|
|
errx(2, "failed to setup main thread: error=%d", error);
|
|
|
|
}
|
|
|
|
|
|
|
|
*newt = t;
|
2007-11-13 20:20:08 +03:00
|
|
|
|
|
|
|
#ifdef PTHREAD__HAVE_THREADREG
|
|
|
|
/* Set up identity register. */
|
|
|
|
pthread__threadreg_set(t);
|
|
|
|
#endif
|
2007-08-16 05:09:34 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
/*ARGSUSED*/
|
|
|
|
pthread__stackid_setup(void *base, size_t size, pthread_t *tp)
|
|
|
|
{
|
|
|
|
pthread_t t;
|
|
|
|
void *redaddr;
|
|
|
|
size_t pagesize;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
t = base;
|
|
|
|
pagesize = (size_t)sysconf(_SC_PAGESIZE);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Put a pointer to the pthread in the bottom (but
|
|
|
|
* redzone-protected section) of the stack.
|
|
|
|
*/
|
|
|
|
redaddr = STACK_SHRINK(STACK_MAX(base, size), pagesize);
|
|
|
|
t->pt_stack.ss_size = size - 2 * pagesize;
|
|
|
|
#ifdef __MACHINE_STACK_GROWS_UP
|
|
|
|
t->pt_stack.ss_sp = (char *)(void *)base + pagesize;
|
|
|
|
#else
|
|
|
|
t->pt_stack.ss_sp = (char *)(void *)base + 2 * pagesize;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Protect the next-to-bottom stack page as a red zone. */
|
|
|
|
ret = mprotect(redaddr, pagesize, PROT_NONE);
|
|
|
|
if (ret == -1) {
|
|
|
|
return errno;
|
|
|
|
}
|
|
|
|
*tp = t;
|
|
|
|
return 0;
|
|
|
|
}
|
2007-10-16 17:41:18 +04:00
|
|
|
|
|
|
|
#ifndef lint
|
|
|
|
static int
|
|
|
|
pthread__cmp(struct __pthread_st *a, struct __pthread_st *b)
|
|
|
|
{
|
|
|
|
return b - a;
|
|
|
|
}
|
|
|
|
RB_GENERATE_STATIC(__pthread__alltree, __pthread_st, pt_alltree, pthread__cmp)
|
|
|
|
#endif
|
|
|
|
|
2007-11-13 18:57:10 +03:00
|
|
|
/* Because getenv() wants to use locks. */
|
|
|
|
char *
|
|
|
|
pthread__getenv(const char *name)
|
|
|
|
{
|
|
|
|
extern char *__findenv(const char *, int *);
|
|
|
|
int off;
|
|
|
|
|
|
|
|
return __findenv(name, &off);
|
|
|
|
}
|
|
|
|
|
|
|
|
|