summaryrefslogtreecommitdiff
path: root/libpthread/nptl/pthread_getschedparam.c
diff options
context:
space:
mode:
Diffstat (limited to 'libpthread/nptl/pthread_getschedparam.c')
-rw-r--r--libpthread/nptl/pthread_getschedparam.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/libpthread/nptl/pthread_getschedparam.c b/libpthread/nptl/pthread_getschedparam.c
index 2dd33acc0..bb5f0a97e 100644
--- a/libpthread/nptl/pthread_getschedparam.c
+++ b/libpthread/nptl/pthread_getschedparam.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2002, 2003, 2004 Free Software Foundation, Inc.
+/* Copyright (C) 2002, 2003, 2004, 2007 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@redhat.com>, 2002.
@@ -25,9 +25,9 @@
int
__pthread_getschedparam (
- pthread_t threadid,
- int *policy,
- struct sched_param *param)
+ pthread_t threadid,
+ int *policy,
+ struct sched_param *param)
{
struct pthread *pd = (struct pthread *) threadid;
@@ -38,7 +38,7 @@ __pthread_getschedparam (
int result = 0;
- lll_lock (pd->lock);
+ lll_lock (pd->lock, LLL_PRIVATE);
/* The library is responsible for maintaining the values at all
times. If the user uses a interface other than
@@ -68,7 +68,7 @@ __pthread_getschedparam (
memcpy (param, &pd->schedparam, sizeof (struct sched_param));
}
- lll_unlock (pd->lock);
+ lll_unlock (pd->lock, LLL_PRIVATE);
return result;
}