diff options
author | Ulrich Drepper <drepper@redhat.com> | 2001-06-16 02:53:06 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2001-06-16 02:53:06 +0000 |
commit | 6f70c24ccbfd46cfc796e459e708cc3437ef3eb4 (patch) | |
tree | 28be5e8edfa5a97a2df9be70379131bf31907c7a /linuxthreads | |
parent | 08003272b856d2f3ed504adcd8a8423357045938 (diff) | |
download | glibc-6f70c24ccbfd46cfc796e459e708cc3437ef3eb4.tar.gz glibc-6f70c24ccbfd46cfc796e459e708cc3437ef3eb4.tar.xz glibc-6f70c24ccbfd46cfc796e459e708cc3437ef3eb4.zip |
(__pthread_reset_main_thread): Fix a typo.
Diffstat (limited to 'linuxthreads')
-rw-r--r-- | linuxthreads/pthread.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linuxthreads/pthread.c b/linuxthreads/pthread.c index e48753b069..ea35c724d9 100644 --- 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); } } |