1996-01-22 00:23:58 +00:00
|
|
|
/*
|
1998-04-29 09:59:34 +00:00
|
|
|
* Copyright (c) 1995-1998 John Birrell <jb@cimlogic.com.au>
|
1996-01-22 00:23:58 +00:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* 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 John Birrell.
|
|
|
|
* 4. Neither the name of the author nor the names of any co-contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY JOHN BIRRELL 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
|
1999-08-05 12:15:30 +00:00
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
1996-01-22 00:23:58 +00:00
|
|
|
* 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.
|
|
|
|
*
|
1999-08-28 00:22:10 +00:00
|
|
|
* $FreeBSD$
|
1996-01-22 00:23:58 +00:00
|
|
|
*/
|
|
|
|
#include <stdio.h>
|
2000-10-13 22:12:32 +00:00
|
|
|
#include <stdlib.h>
|
1996-01-22 00:23:58 +00:00
|
|
|
#include <fcntl.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <pthread.h>
|
1999-01-11 00:02:37 +00:00
|
|
|
#include <errno.h>
|
2002-09-16 08:45:36 +00:00
|
|
|
#include "thr_private.h"
|
1996-01-22 00:23:58 +00:00
|
|
|
|
2000-11-09 05:08:26 +00:00
|
|
|
#ifndef NELEMENTS
|
|
|
|
#define NELEMENTS(arr) (sizeof(arr) / sizeof(arr[0]))
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static void dump_thread(int fd, pthread_t pthread, int long_version);
|
|
|
|
|
2001-04-10 04:19:21 +00:00
|
|
|
__weak_reference(_pthread_set_name_np, pthread_set_name_np);
|
2000-11-09 05:08:26 +00:00
|
|
|
|
1996-01-22 00:23:58 +00:00
|
|
|
struct s_thread_info {
|
|
|
|
enum pthread_state state;
|
|
|
|
char *name;
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Static variables: */
|
|
|
|
static const struct s_thread_info thread_info[] = {
|
|
|
|
{PS_RUNNING , "Running"},
|
2003-04-18 05:04:16 +00:00
|
|
|
{PS_LOCKWAIT , "Waiting on an internal lock"},
|
1996-01-22 00:23:58 +00:00
|
|
|
{PS_MUTEX_WAIT , "Waiting on a mutex"},
|
|
|
|
{PS_COND_WAIT , "Waiting on a condition variable"},
|
|
|
|
{PS_SLEEP_WAIT , "Sleeping"},
|
2003-04-18 05:04:16 +00:00
|
|
|
{PS_SIGSUSPEND , "Suspended, waiting for a signal"},
|
|
|
|
{PS_SIGWAIT , "Waiting for a signal"},
|
1996-01-22 00:23:58 +00:00
|
|
|
{PS_JOIN , "Waiting to join"},
|
|
|
|
{PS_SUSPENDED , "Suspended"},
|
|
|
|
{PS_DEAD , "Dead"},
|
1999-03-23 05:07:56 +00:00
|
|
|
{PS_DEADLOCK , "Deadlocked"},
|
1996-01-22 00:23:58 +00:00
|
|
|
{PS_STATE_MAX , "Not a real state!"}
|
|
|
|
};
|
|
|
|
|
|
|
|
void
|
|
|
|
_thread_dump_info(void)
|
|
|
|
{
|
2003-04-18 05:04:16 +00:00
|
|
|
char s[512], tmpfile[128];
|
|
|
|
pthread_t pthread;
|
|
|
|
int fd, i;
|
1996-01-22 00:23:58 +00:00
|
|
|
|
2000-11-09 05:08:26 +00:00
|
|
|
for (i = 0; i < 100000; i++) {
|
o Use a daemon thread to monitor signal events in kernel, if pending
signals were changed in kernel, it will retrieve the pending set and
try to find a thread to dispatch the signal. The dispatching process
can be rolled back if the signal is no longer in kernel.
o Create two functions _thr_signal_init() and _thr_signal_deinit(),
all signal action settings are retrieved from kernel when threading
mode is turned on, after a fork(), child process will reset them to
user settings by calling _thr_signal_deinit(). when threading mode
is not turned on, all signal operations are direct past to kernel.
o When a thread generated a synchoronous signals and its context returned
from completed list, UTS will retrieve the signal from its mailbox and try
to deliver the signal to thread.
o Context signal mask is now only used when delivering signals, thread's
current signal mask is always the one in pthread structure.
o Remove have_signals field in pthread structure, replace it with
psf_valid in pthread_signal_frame. when psf_valid is true, in context
switch time, thread will backout itself from some mutex/condition
internal queues, then begin to process signals. when a thread is not
at blocked state and running, check_pending indicates there are signals
for the thread, after preempted and then resumed time, UTS will try to
deliver signals to the thread.
o At signal delivering time, not only pending signals in thread will be
scanned, process's pending signals will be scanned too.
o Change sigwait code a bit, remove field sigwait in pthread_wait_data,
replace it with oldsigmask in pthread structure, when a thread calls
sigwait(), its current signal mask is backuped to oldsigmask, and waitset
is copied to its signal mask and when the thread gets a signal in the
waitset range, its current signal mask is restored from oldsigmask,
these are done in atomic fashion.
o Two additional POSIX APIs are implemented, sigwaitinfo() and sigtimedwait().
o Signal code locking is better than previous, there is fewer race conditions.
o Temporary disable most of code in _kse_single_thread as it is not safe
after fork().
2003-06-28 09:55:02 +00:00
|
|
|
snprintf(tmpfile, sizeof(tmpfile), "/tmp/pthread.dump.%u.%i",
|
1999-01-11 00:02:37 +00:00
|
|
|
getpid(), i);
|
|
|
|
/* Open the dump file for append and create it if necessary: */
|
2001-01-24 13:03:38 +00:00
|
|
|
if ((fd = __sys_open(tmpfile, O_RDWR | O_CREAT | O_EXCL,
|
1999-01-11 00:02:37 +00:00
|
|
|
0666)) < 0) {
|
|
|
|
/* Can't open the dump file. */
|
|
|
|
if (errno == EEXIST)
|
|
|
|
continue;
|
|
|
|
/*
|
|
|
|
* We only need to continue in case of
|
|
|
|
* EEXIT error. Most other error
|
|
|
|
* codes means that we will fail all
|
|
|
|
* the times.
|
|
|
|
*/
|
|
|
|
return;
|
|
|
|
} else {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (i==100000) {
|
|
|
|
/* all 100000 possibilities are in use :( */
|
|
|
|
return;
|
1996-01-22 00:23:58 +00:00
|
|
|
} else {
|
2003-04-18 05:04:16 +00:00
|
|
|
/* Dump the active threads. */
|
|
|
|
strcpy(s, "\n\n========\nACTIVE THREADS\n\n");
|
2001-01-24 13:03:38 +00:00
|
|
|
__sys_write(fd, s, strlen(s));
|
1996-01-22 00:23:58 +00:00
|
|
|
|
|
|
|
/* Enter a loop to report each thread in the global list: */
|
In the words of the author:
o The polling mechanism for I/O readiness was changed from
select() to poll(). In additon, a wrapped version of poll()
is now provided.
o The wrapped select routine now converts each fd_set to a
poll array so that the thread scheduler doesn't have to
perform a bitwise search for selected fds each time file
descriptors are polled for I/O readiness.
o The thread scheduler was modified to use a new queue (_workq)
for threads that need work. Threads waiting for I/O readiness
and spinblocks are added to the work queue in addition to the
waiting queue. This reduces the time spent forming/searching
the array of file descriptors being polled.
o The waiting queue (_waitingq) is now maintained in order of
thread wakeup time. This allows the thread scheduler to
find the nearest wakeup time by looking at the first thread
in the queue instead of searching the entire queue.
o Removed file descriptor locking for select/poll routines. An
application should not rely on the threads library for providing
this locking; if necessary, the application should use mutexes
to protect selecting/polling of file descriptors.
o Retrieve and use the kernel clock rate/resolution at startup
instead of hardcoding the clock resolution to 10 msec (tested
with kernel running at 1000 HZ).
o All queues have been changed to use queue.h macros. These
include the queues of all threads, dead threads, and threads
waiting for file descriptor locks.
o Added reinitialization of the GC mutex and condition variable
after a fork. Also prevented reallocation of the ready queue
after a fork.
o Prevented the wrapped close routine from closing the thread
kernel pipes.
o Initialized file descriptor table for stdio entries at thread
init.
o Provided additional flags to indicate to what queues threads
belong.
o Moved TAILQ initialization for statically allocated mutex and
condition variables to after the spinlock.
o Added dispatching of signals to pthread_kill. Removing the
dispatching of signals from thread activation broke sigsuspend
when pthread_kill was used to send a signal to a thread.
o Temporarily set the state of a thread to PS_SUSPENDED when it
is first created and placed in the list of threads so that it
will not be accidentally scheduled before becoming a member
of one of the scheduling queues.
o Change the signal handler to queue signals to the thread kernel
pipe if the scheduling queues are protected. When scheduling
queues are unprotected, signals are then dequeued and handled.
o Ensured that all installed signal handlers block the scheduling
signal and that the scheduling signal handler blocks all
other signals. This ensures that the signal handler is only
interruptible for and by non-scheduling signals. An atomic
lock is used to decide which instance of the signal handler
will handle pending signals.
o Removed _lock_thread_list and _unlock_thread_list as they are
no longer used to protect the thread list.
o Added missing RCS IDs to modified files.
o Added checks for appropriate queue membership and activity when
adding, removing, and searching the scheduling queues. These
checks add very little overhead and are enabled when compiled
with _PTHREADS_INVARIANTS defined. Suggested and implemented
by Tor Egge with some modification by me.
o Close a race condition in uthread_close. (Tor Egge)
o Protect the scheduling queues while modifying them in
pthread_cond_signal and _thread_fd_unlock. (Tor Egge)
o Ensure that when a thread gets a mutex, the mutex is on that
threads list of owned mutexes. (Tor Egge)
o Set the kernel-in-scheduler flag in _thread_kern_sched_state
and _thread_kern_sched_state_unlock to prevent a scheduling
signal from calling the scheduler again. (Tor Egge)
o Don't use TAILQ_FOREACH macro while searching the waiting
queue for threads in a sigwait state, because a change of
state destroys the TAILQ link. It is actually safe to do
so, though, because once a sigwaiting thread is found, the
loop ends and the function returns. (Tor Egge)
o When dispatching signals to threads, make the thread inherit
the signal deferral flag of the currently running thread.
(Tor Egge)
Submitted by: Daniel Eischen <eischen@vigrid.com> and
Tor Egge <Tor.Egge@fast.no>
1999-06-20 08:28:48 +00:00
|
|
|
TAILQ_FOREACH(pthread, &_thread_list, tle) {
|
2003-04-18 05:04:16 +00:00
|
|
|
if (pthread->state != PS_DEAD)
|
|
|
|
dump_thread(fd, pthread, /*long_verson*/ 1);
|
1996-01-22 00:23:58 +00:00
|
|
|
}
|
|
|
|
|
2003-04-18 05:04:16 +00:00
|
|
|
/*
|
|
|
|
* Dump the ready threads.
|
|
|
|
* XXX - We can't easily do this because the run queues
|
|
|
|
* are per-KSEG.
|
|
|
|
*/
|
|
|
|
strcpy(s, "\n\n========\nREADY THREADS - unimplemented\n\n");
|
2001-01-24 13:03:38 +00:00
|
|
|
__sys_write(fd, s, strlen(s));
|
1999-03-23 05:07:56 +00:00
|
|
|
|
|
|
|
|
2003-04-18 05:04:16 +00:00
|
|
|
/*
|
|
|
|
* Dump the waiting threads.
|
|
|
|
* XXX - We can't easily do this because the wait queues
|
|
|
|
* are per-KSEG.
|
|
|
|
*/
|
|
|
|
strcpy(s, "\n\n========\nWAITING THREADS - unimplemented\n\n");
|
2001-01-24 13:03:38 +00:00
|
|
|
__sys_write(fd, s, strlen(s));
|
In the words of the author:
o The polling mechanism for I/O readiness was changed from
select() to poll(). In additon, a wrapped version of poll()
is now provided.
o The wrapped select routine now converts each fd_set to a
poll array so that the thread scheduler doesn't have to
perform a bitwise search for selected fds each time file
descriptors are polled for I/O readiness.
o The thread scheduler was modified to use a new queue (_workq)
for threads that need work. Threads waiting for I/O readiness
and spinblocks are added to the work queue in addition to the
waiting queue. This reduces the time spent forming/searching
the array of file descriptors being polled.
o The waiting queue (_waitingq) is now maintained in order of
thread wakeup time. This allows the thread scheduler to
find the nearest wakeup time by looking at the first thread
in the queue instead of searching the entire queue.
o Removed file descriptor locking for select/poll routines. An
application should not rely on the threads library for providing
this locking; if necessary, the application should use mutexes
to protect selecting/polling of file descriptors.
o Retrieve and use the kernel clock rate/resolution at startup
instead of hardcoding the clock resolution to 10 msec (tested
with kernel running at 1000 HZ).
o All queues have been changed to use queue.h macros. These
include the queues of all threads, dead threads, and threads
waiting for file descriptor locks.
o Added reinitialization of the GC mutex and condition variable
after a fork. Also prevented reallocation of the ready queue
after a fork.
o Prevented the wrapped close routine from closing the thread
kernel pipes.
o Initialized file descriptor table for stdio entries at thread
init.
o Provided additional flags to indicate to what queues threads
belong.
o Moved TAILQ initialization for statically allocated mutex and
condition variables to after the spinlock.
o Added dispatching of signals to pthread_kill. Removing the
dispatching of signals from thread activation broke sigsuspend
when pthread_kill was used to send a signal to a thread.
o Temporarily set the state of a thread to PS_SUSPENDED when it
is first created and placed in the list of threads so that it
will not be accidentally scheduled before becoming a member
of one of the scheduling queues.
o Change the signal handler to queue signals to the thread kernel
pipe if the scheduling queues are protected. When scheduling
queues are unprotected, signals are then dequeued and handled.
o Ensured that all installed signal handlers block the scheduling
signal and that the scheduling signal handler blocks all
other signals. This ensures that the signal handler is only
interruptible for and by non-scheduling signals. An atomic
lock is used to decide which instance of the signal handler
will handle pending signals.
o Removed _lock_thread_list and _unlock_thread_list as they are
no longer used to protect the thread list.
o Added missing RCS IDs to modified files.
o Added checks for appropriate queue membership and activity when
adding, removing, and searching the scheduling queues. These
checks add very little overhead and are enabled when compiled
with _PTHREADS_INVARIANTS defined. Suggested and implemented
by Tor Egge with some modification by me.
o Close a race condition in uthread_close. (Tor Egge)
o Protect the scheduling queues while modifying them in
pthread_cond_signal and _thread_fd_unlock. (Tor Egge)
o Ensure that when a thread gets a mutex, the mutex is on that
threads list of owned mutexes. (Tor Egge)
o Set the kernel-in-scheduler flag in _thread_kern_sched_state
and _thread_kern_sched_state_unlock to prevent a scheduling
signal from calling the scheduler again. (Tor Egge)
o Don't use TAILQ_FOREACH macro while searching the waiting
queue for threads in a sigwait state, because a change of
state destroys the TAILQ link. It is actually safe to do
so, though, because once a sigwaiting thread is found, the
loop ends and the function returns. (Tor Egge)
o When dispatching signals to threads, make the thread inherit
the signal deferral flag of the currently running thread.
(Tor Egge)
Submitted by: Daniel Eischen <eischen@vigrid.com> and
Tor Egge <Tor.Egge@fast.no>
1999-06-20 08:28:48 +00:00
|
|
|
|
2003-04-18 05:04:16 +00:00
|
|
|
/* Close the dump file. */
|
2001-01-24 13:03:38 +00:00
|
|
|
__sys_close(fd);
|
1996-01-22 00:23:58 +00:00
|
|
|
}
|
|
|
|
}
|
1998-04-11 07:47:22 +00:00
|
|
|
|
2000-11-09 05:08:26 +00:00
|
|
|
static void
|
|
|
|
dump_thread(int fd, pthread_t pthread, int long_version)
|
|
|
|
{
|
2003-04-18 05:04:16 +00:00
|
|
|
struct pthread *curthread = _get_curthread();
|
|
|
|
char s[512];
|
|
|
|
int i;
|
2000-11-09 05:08:26 +00:00
|
|
|
|
|
|
|
/* Find the state: */
|
|
|
|
for (i = 0; i < NELEMENTS(thread_info) - 1; i++)
|
|
|
|
if (thread_info[i].state == pthread->state)
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* Output a record for the thread: */
|
|
|
|
snprintf(s, sizeof(s),
|
2003-04-18 05:04:16 +00:00
|
|
|
"--------------------\n"
|
2003-07-07 03:08:11 +00:00
|
|
|
"Thread %p (%s), scope %s, prio %3d, blocked %s, state %s [%s:%d]\n",
|
2000-11-09 05:08:26 +00:00
|
|
|
pthread, (pthread->name == NULL) ? "" : pthread->name,
|
2003-07-07 03:08:11 +00:00
|
|
|
pthread->attr.flags & PTHREAD_SCOPE_SYSTEM ? "system" : "process",
|
2003-04-18 05:04:16 +00:00
|
|
|
pthread->active_priority, (pthread->blocked != 0) ? "yes" : "no",
|
|
|
|
thread_info[i].name, pthread->fname, pthread->lineno);
|
2001-01-24 13:03:38 +00:00
|
|
|
__sys_write(fd, s, strlen(s));
|
2000-11-09 05:08:26 +00:00
|
|
|
|
|
|
|
if (long_version != 0) {
|
|
|
|
/* Check if this is the running thread: */
|
2001-01-24 13:03:38 +00:00
|
|
|
if (pthread == curthread) {
|
2000-11-09 05:08:26 +00:00
|
|
|
/* Output a record for the running thread: */
|
|
|
|
strcpy(s, "This is the running thread\n");
|
2001-01-24 13:03:38 +00:00
|
|
|
__sys_write(fd, s, strlen(s));
|
2000-11-09 05:08:26 +00:00
|
|
|
}
|
|
|
|
/* Check if this is the initial thread: */
|
2003-04-18 05:04:16 +00:00
|
|
|
if (pthread == _thr_initial) {
|
2000-11-09 05:08:26 +00:00
|
|
|
/* Output a record for the initial thread: */
|
|
|
|
strcpy(s, "This is the initial thread\n");
|
2001-01-24 13:03:38 +00:00
|
|
|
__sys_write(fd, s, strlen(s));
|
2000-11-09 05:08:26 +00:00
|
|
|
}
|
2003-07-07 12:12:33 +00:00
|
|
|
|
2000-11-09 05:08:26 +00:00
|
|
|
/* Process according to thread state: */
|
|
|
|
switch (pthread->state) {
|
2003-04-18 05:04:16 +00:00
|
|
|
case PS_SIGWAIT:
|
2003-07-07 12:12:33 +00:00
|
|
|
snprintf(s, sizeof(s), "sigmask (hi) ");
|
|
|
|
__sys_write(fd, s, strlen(s));
|
|
|
|
for (i = _SIG_WORDS - 1; i >= 0; i--) {
|
|
|
|
snprintf(s, sizeof(s), "%08x ",
|
|
|
|
pthread->sigmask.__bits[i]);
|
|
|
|
__sys_write(fd, s, strlen(s));
|
|
|
|
}
|
|
|
|
snprintf(s, sizeof(s), "(lo)\n");
|
|
|
|
__sys_write(fd, s, strlen(s));
|
|
|
|
|
2003-07-07 03:08:11 +00:00
|
|
|
snprintf(s, sizeof(s), "waitset (hi) ");
|
o Use a daemon thread to monitor signal events in kernel, if pending
signals were changed in kernel, it will retrieve the pending set and
try to find a thread to dispatch the signal. The dispatching process
can be rolled back if the signal is no longer in kernel.
o Create two functions _thr_signal_init() and _thr_signal_deinit(),
all signal action settings are retrieved from kernel when threading
mode is turned on, after a fork(), child process will reset them to
user settings by calling _thr_signal_deinit(). when threading mode
is not turned on, all signal operations are direct past to kernel.
o When a thread generated a synchoronous signals and its context returned
from completed list, UTS will retrieve the signal from its mailbox and try
to deliver the signal to thread.
o Context signal mask is now only used when delivering signals, thread's
current signal mask is always the one in pthread structure.
o Remove have_signals field in pthread structure, replace it with
psf_valid in pthread_signal_frame. when psf_valid is true, in context
switch time, thread will backout itself from some mutex/condition
internal queues, then begin to process signals. when a thread is not
at blocked state and running, check_pending indicates there are signals
for the thread, after preempted and then resumed time, UTS will try to
deliver signals to the thread.
o At signal delivering time, not only pending signals in thread will be
scanned, process's pending signals will be scanned too.
o Change sigwait code a bit, remove field sigwait in pthread_wait_data,
replace it with oldsigmask in pthread structure, when a thread calls
sigwait(), its current signal mask is backuped to oldsigmask, and waitset
is copied to its signal mask and when the thread gets a signal in the
waitset range, its current signal mask is restored from oldsigmask,
these are done in atomic fashion.
o Two additional POSIX APIs are implemented, sigwaitinfo() and sigtimedwait().
o Signal code locking is better than previous, there is fewer race conditions.
o Temporary disable most of code in _kse_single_thread as it is not safe
after fork().
2003-06-28 09:55:02 +00:00
|
|
|
__sys_write(fd, s, strlen(s));
|
2003-04-18 05:04:16 +00:00
|
|
|
for (i = _SIG_WORDS - 1; i >= 0; i--) {
|
2003-07-07 03:08:11 +00:00
|
|
|
snprintf(s, sizeof(s), "%08x ",
|
2003-09-22 00:40:23 +00:00
|
|
|
pthread->data.sigwait->waitset->__bits[i]);
|
2003-04-18 05:04:16 +00:00
|
|
|
__sys_write(fd, s, strlen(s));
|
|
|
|
}
|
|
|
|
snprintf(s, sizeof(s), "(lo)\n");
|
|
|
|
__sys_write(fd, s, strlen(s));
|
|
|
|
break;
|
2000-11-09 05:08:26 +00:00
|
|
|
/*
|
|
|
|
* Trap other states that are not explicitly
|
|
|
|
* coded to dump information:
|
|
|
|
*/
|
|
|
|
default:
|
2003-07-07 12:12:33 +00:00
|
|
|
snprintf(s, sizeof(s), "sigmask (hi) ");
|
|
|
|
__sys_write(fd, s, strlen(s));
|
|
|
|
for (i = _SIG_WORDS - 1; i >= 0; i--) {
|
|
|
|
snprintf(s, sizeof(s), "%08x ",
|
|
|
|
pthread->sigmask.__bits[i]);
|
|
|
|
__sys_write(fd, s, strlen(s));
|
|
|
|
}
|
|
|
|
snprintf(s, sizeof(s), "(lo)\n");
|
|
|
|
__sys_write(fd, s, strlen(s));
|
2000-11-09 05:08:26 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1998-04-11 07:47:22 +00:00
|
|
|
/* Set the thread name for debug: */
|
|
|
|
void
|
2003-04-18 05:04:16 +00:00
|
|
|
_pthread_set_name_np(pthread_t thread, char *name)
|
1998-04-11 07:47:22 +00:00
|
|
|
{
|
|
|
|
/* Check if the caller has specified a valid thread: */
|
2003-04-18 05:04:16 +00:00
|
|
|
if (thread != NULL && thread->magic == THR_MAGIC) {
|
2000-05-16 22:08:14 +00:00
|
|
|
if (thread->name != NULL) {
|
|
|
|
/* Free space for previous name. */
|
|
|
|
free(thread->name);
|
|
|
|
}
|
1998-04-11 07:47:22 +00:00
|
|
|
thread->name = strdup(name);
|
2000-05-16 22:08:14 +00:00
|
|
|
}
|
1998-04-11 07:47:22 +00:00
|
|
|
}
|