mirror of
https://sourceware.org/git/glibc.git
synced 2025-08-10 05:03:06 +03:00
Update.
2003-09-16 Ulrich Drepper <drepper@redhat.com> * attr.c (pthread_getattr_np): Correctly fill in the stack-related values for the initial thread.
This commit is contained in:
@@ -1,3 +1,8 @@
|
|||||||
|
2003-09-16 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
* attr.c (pthread_getattr_np): Correctly fill in the stack-related
|
||||||
|
values for the initial thread.
|
||||||
|
|
||||||
2003-09-17 Jakub Jelinek <jakub@redhat.com>
|
2003-09-17 Jakub Jelinek <jakub@redhat.com>
|
||||||
|
|
||||||
* pthread.c (manager_thread): Remove static, add attribute_hidden.
|
* pthread.c (manager_thread): Remove static, add attribute_hidden.
|
||||||
|
@@ -15,6 +15,9 @@
|
|||||||
/* Handling of thread attributes */
|
/* Handling of thread attributes */
|
||||||
|
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
|
#include <inttypes.h>
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <stdio_ext.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
#include <sys/param.h>
|
#include <sys/param.h>
|
||||||
@@ -344,6 +347,7 @@ int pthread_getattr_np (pthread_t thread, pthread_attr_t *attr)
|
|||||||
{
|
{
|
||||||
pthread_handle handle = thread_handle (thread);
|
pthread_handle handle = thread_handle (thread);
|
||||||
pthread_descr descr;
|
pthread_descr descr;
|
||||||
|
int ret = 0;
|
||||||
|
|
||||||
if (handle == NULL)
|
if (handle == NULL)
|
||||||
return ENOENT;
|
return ENOENT;
|
||||||
@@ -364,6 +368,7 @@ int pthread_getattr_np (pthread_t thread, pthread_attr_t *attr)
|
|||||||
|
|
||||||
attr->__inheritsched = descr->p_inheritsched;
|
attr->__inheritsched = descr->p_inheritsched;
|
||||||
attr->__scope = PTHREAD_SCOPE_SYSTEM;
|
attr->__scope = PTHREAD_SCOPE_SYSTEM;
|
||||||
|
|
||||||
#ifdef _STACK_GROWS_DOWN
|
#ifdef _STACK_GROWS_DOWN
|
||||||
# ifdef USE_TLS
|
# ifdef USE_TLS
|
||||||
attr->__stacksize = descr->p_stackaddr - (char *)descr->p_guardaddr
|
attr->__stacksize = descr->p_stackaddr - (char *)descr->p_guardaddr
|
||||||
@@ -399,5 +404,61 @@ int pthread_getattr_np (pthread_t thread, pthread_attr_t *attr)
|
|||||||
# endif
|
# endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
if (attr->__stackaddr == NULL)
|
||||||
|
{
|
||||||
|
/* Defined in ld.so. */
|
||||||
|
extern void *__libc_stack_end;
|
||||||
|
|
||||||
|
/* Stack size limit. */
|
||||||
|
struct rlimit rl;
|
||||||
|
|
||||||
|
/* The safest way to get the top of the stack is to read
|
||||||
|
/proc/self/maps and locate the line into which
|
||||||
|
__libc_stack_end falls. */
|
||||||
|
FILE *fp = fopen ("/proc/self/maps", "rc");
|
||||||
|
if (fp == NULL)
|
||||||
|
ret = errno;
|
||||||
|
/* We need the limit of the stack in any case. */
|
||||||
|
else if (getrlimit (RLIMIT_STACK, &rl) != 0)
|
||||||
|
ret = errno;
|
||||||
|
else
|
||||||
|
{
|
||||||
|
/* We need no locking. */
|
||||||
|
__fsetlocking (fp, FSETLOCKING_BYCALLER);
|
||||||
|
|
||||||
|
/* Until we found an entry (which should always be the case)
|
||||||
|
mark the result as a failure. */
|
||||||
|
ret = ENOENT;
|
||||||
|
|
||||||
|
char *line = NULL;
|
||||||
|
size_t linelen = 0;
|
||||||
|
|
||||||
|
while (! feof_unlocked (fp))
|
||||||
|
{
|
||||||
|
if (__getdelim (&line, &linelen, '\n', fp) <= 0)
|
||||||
|
break;
|
||||||
|
|
||||||
|
uintptr_t from;
|
||||||
|
uintptr_t to;
|
||||||
|
if (sscanf (line, "%" SCNxPTR "-%" SCNxPTR, &from, &to) == 2
|
||||||
|
&& from <= (uintptr_t) __libc_stack_end
|
||||||
|
&& (uintptr_t) __libc_stack_end < to)
|
||||||
|
{
|
||||||
|
/* Found the entry. Now we have the info we need. */
|
||||||
|
attr->__stacksize = rl.rlim_cur;
|
||||||
|
attr->__stackaddr = (void *) to;
|
||||||
|
|
||||||
|
/* We succeed and no need to look further. */
|
||||||
|
ret = 0;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fclose (fp);
|
||||||
|
free (line);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@@ -1,3 +1,8 @@
|
|||||||
|
2003-09-16 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
* pthread_getattr_np.c (pthread_getattr_np): Correctly fill in the
|
||||||
|
stack-related values for the initial thread.
|
||||||
|
|
||||||
2003-09-15 Jakub Jelinek <jakub@redhat.com>
|
2003-09-15 Jakub Jelinek <jakub@redhat.com>
|
||||||
|
|
||||||
* Makefile (CFLAGS-pthread_once.c): Add $(uses-callbacks).
|
* Makefile (CFLAGS-pthread_once.c): Add $(uses-callbacks).
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
/* Copyright (C) 2002 Free Software Foundation, Inc.
|
/* Copyright (C) 2002, 2003 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Ulrich Drepper <drepper@redhat.com>, 2002.
|
Contributed by Ulrich Drepper <drepper@redhat.com>, 2002.
|
||||||
|
|
||||||
@@ -17,7 +17,14 @@
|
|||||||
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
|
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
|
||||||
02111-1307 USA. */
|
02111-1307 USA. */
|
||||||
|
|
||||||
|
#include <assert.h>
|
||||||
|
#include <errno.h>
|
||||||
|
#include <inttypes.h>
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <stdio_ext.h>
|
||||||
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
#include <sys/resource.h>
|
||||||
#include "pthreadP.h"
|
#include "pthreadP.h"
|
||||||
#include <lowlevellock.h>
|
#include <lowlevellock.h>
|
||||||
|
|
||||||
@@ -29,6 +36,7 @@ pthread_getattr_np (thread_id, attr)
|
|||||||
{
|
{
|
||||||
struct pthread *thread = (struct pthread *) thread_id;
|
struct pthread *thread = (struct pthread *) thread_id;
|
||||||
struct pthread_attr *iattr = (struct pthread_attr *) attr;
|
struct pthread_attr *iattr = (struct pthread_attr *) attr;
|
||||||
|
int ret = 0;
|
||||||
|
|
||||||
/* We have to handle cancellation in the following code since we are
|
/* We have to handle cancellation in the following code since we are
|
||||||
locking another threads desriptor. */
|
locking another threads desriptor. */
|
||||||
@@ -53,13 +61,75 @@ pthread_getattr_np (thread_id, attr)
|
|||||||
iattr->guardsize = thread->guardsize;
|
iattr->guardsize = thread->guardsize;
|
||||||
|
|
||||||
/* The sizes are subject to alignment. */
|
/* The sizes are subject to alignment. */
|
||||||
iattr->stacksize = thread->stackblock_size;
|
if (__builtin_expect (thread->stackblock != NULL, 1))
|
||||||
iattr->stackaddr = (char *) thread->stackblock + iattr->stacksize;
|
{
|
||||||
|
iattr->stacksize = thread->stackblock_size;
|
||||||
|
iattr->stackaddr = (char *) thread->stackblock + iattr->stacksize;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
/* No stack information available. This must be for the initial
|
||||||
|
thread. Get the info in some magical way. */
|
||||||
|
assert (thread->pid == thread->tid);
|
||||||
|
|
||||||
|
/* Defined in ld.so. */
|
||||||
|
extern void *__libc_stack_end;
|
||||||
|
|
||||||
|
/* Stack size limit. */
|
||||||
|
struct rlimit rl;
|
||||||
|
|
||||||
|
/* The safest way to get the top of the stack is to read
|
||||||
|
/proc/self/maps and locate the line into which
|
||||||
|
__libc_stack_end falls. */
|
||||||
|
FILE *fp = fopen ("/proc/self/maps", "rc");
|
||||||
|
if (fp == NULL)
|
||||||
|
ret = errno;
|
||||||
|
/* We need the limit of the stack in any case. */
|
||||||
|
else if (getrlimit (RLIMIT_STACK, &rl) != 0)
|
||||||
|
ret = errno;
|
||||||
|
else
|
||||||
|
{
|
||||||
|
/* We need no locking. */
|
||||||
|
__fsetlocking (fp, FSETLOCKING_BYCALLER);
|
||||||
|
|
||||||
|
/* Until we found an entry (which should always be the case)
|
||||||
|
mark the result as a failure. */
|
||||||
|
ret = ENOENT;
|
||||||
|
|
||||||
|
char *line = NULL;
|
||||||
|
size_t linelen = 0;
|
||||||
|
|
||||||
|
while (! feof_unlocked (fp))
|
||||||
|
{
|
||||||
|
if (__getdelim (&line, &linelen, '\n', fp) <= 0)
|
||||||
|
break;
|
||||||
|
|
||||||
|
uintptr_t from;
|
||||||
|
uintptr_t to;
|
||||||
|
if (sscanf (line, "%" SCNxPTR "-%" SCNxPTR, &from, &to) == 2
|
||||||
|
&& from <= (uintptr_t) __libc_stack_end
|
||||||
|
&& (uintptr_t) __libc_stack_end < to)
|
||||||
|
{
|
||||||
|
/* Found the entry. Now we have the info we need. */
|
||||||
|
iattr->stacksize = rl.rlim_cur;
|
||||||
|
iattr->stackaddr = (void *) to;
|
||||||
|
|
||||||
|
/* We succeed and no need to look further. */
|
||||||
|
ret = 0;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fclose (fp);
|
||||||
|
free (line);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
iattr->flags |= ATTR_FLAG_STACKADDR;
|
iattr->flags |= ATTR_FLAG_STACKADDR;
|
||||||
|
|
||||||
lll_unlock (thread->lock);
|
lll_unlock (thread->lock);
|
||||||
|
|
||||||
pthread_cleanup_pop (0);
|
pthread_cleanup_pop (0);
|
||||||
|
|
||||||
return 0;
|
return ret;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user