projects
/
external
/
glibc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0800327
)
(__pthread_reset_main_thread): Fix a typo.
author
Ulrich Drepper
<drepper@redhat.com>
Sat, 16 Jun 2001 02:53:06 +0000
(
02:53
+0000)
committer
Ulrich Drepper
<drepper@redhat.com>
Sat, 16 Jun 2001 02:53:06 +0000
(
02:53
+0000)
linuxthreads/pthread.c
patch
|
blob
|
history
diff --git
a/linuxthreads/pthread.c
b/linuxthreads/pthread.c
index
e48753b
..
ea35c72
100644
(file)
--- a/
linuxthreads/pthread.c
+++ b/
linuxthreads/pthread.c
@@
-884,7
+884,7
@@
void __pthread_reset_main_thread()
if (getrlimit (RLIMIT_STACK, &limit) == 0
&& limit.rlim_cur != limit.rlim_max) {
limit.rlim_cur = limit.rlim_max;
- setrlimit
(STACK_SIZE
, &limit);
+ setrlimit
(RLIMIT_STACK
, &limit);
}
}