1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
|
/* $OpenBSD: rthread_np.c,v 1.7 2012/02/18 21:12:09 guenther Exp $ */
/*
* Copyright (c) 2004,2005 Ted Unangst <tedu@openbsd.org>
* Copyright (c) 2005 Otto Moerbeek <otto@openbsd.org>
* All Rights Reserved.
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#include <sys/param.h>
#include <sys/time.h>
#include <sys/lock.h>
#include <sys/resource.h>
#include <sys/queue.h>
#include <errno.h>
#include <pthread.h>
#include <pthread_np.h>
#include <stddef.h>
#include <string.h>
#include <unistd.h>
#include <uvm/uvm_extern.h>
#include <machine/spinlock.h>
#include "rthread.h"
void
pthread_set_name_np(pthread_t thread, const char *name)
{
strlcpy(thread->name, name, sizeof(thread->name));
}
int
pthread_main_np(void)
{
return (!_threads_ready || pthread_self() == &_initial_thread ? 1 : 0);
}
/*
* Return stack info from the given thread. Based upon the solaris
* thr_stksegment function. Note that the returned ss_sp member is the
* *top* of the allocated stack area, unlike in sigaltstack() where
* it's the bottom. You'll have to ask Sun what they were thinking...
*
* This function taken from the uthread library, with the following
* license:
* PUBLIC DOMAIN: No Rights Reserved. Marco S Hyman <marc@snafu.org> */
int
pthread_stackseg_np(pthread_t thread, stack_t *sinfo)
{
char *base;
int ret;
struct rlimit rl;
if (thread->stack) {
base = thread->stack->base;
#if !defined(MACHINE_STACK_GROWS_UP)
base += (ptrdiff_t)thread->stack->len;
#endif
sinfo->ss_sp = base;
sinfo->ss_size = thread->stack->len;
sinfo->ss_flags = 0;
ret = 0;
} else if (thread == &_initial_thread) {
if (getrlimit(RLIMIT_STACK, &rl) != 0)
return (EAGAIN);
/*
* round_page() stack rlim_cur and
* trunc_page() USRSTACK to be consistent with
* the way the kernel sets up the stack.
*/
sinfo->ss_size = ROUND_TO_PAGE((size_t)rl.rlim_cur);
sinfo->ss_sp = (caddr_t) (USRSTACK & ~(_thread_pagesize - 1));
sinfo->ss_flags = 0;
ret = 0;
} else
ret = EAGAIN;
return ret;
}
|