mirror of git://sourceware.org/git/glibc.git
Update.
2004-11-24 Ulrich Drepper <drepper@redhat.com> * Makefile (libpthread-routines): Add pthread_setschedprio. * Versions [libpthread, GLIBC_2.3.4]: Add pthread_setschedprio. * sysdeps/pthread/pthread.h: Declare pthread_setschedprio. * pthread_setschedprio.c: New file.
This commit is contained in:
parent
09594e7ad1
commit
f1f2cafcd4
|
|
@ -1,3 +1,10 @@
|
||||||
|
2004-11-24 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
* Makefile (libpthread-routines): Add pthread_setschedprio.
|
||||||
|
* Versions [libpthread, GLIBC_2.3.4]: Add pthread_setschedprio.
|
||||||
|
* sysdeps/pthread/pthread.h: Declare pthread_setschedprio.
|
||||||
|
* pthread_setschedprio.c: New file.
|
||||||
|
|
||||||
2004-11-20 Jakub Jelinek <jakub@redhat.com>
|
2004-11-20 Jakub Jelinek <jakub@redhat.com>
|
||||||
|
|
||||||
* pthread_create.c (pthread_cancel): Add PTHREAD_STATIC_FN_REQUIRE.
|
* pthread_create.c (pthread_cancel): Add PTHREAD_STATIC_FN_REQUIRE.
|
||||||
|
|
|
||||||
|
|
@ -36,6 +36,7 @@ libpthread-routines = init vars events version \
|
||||||
pthread_self pthread_equal pthread_yield \
|
pthread_self pthread_equal pthread_yield \
|
||||||
pthread_getconcurrency pthread_setconcurrency \
|
pthread_getconcurrency pthread_setconcurrency \
|
||||||
pthread_getschedparam pthread_setschedparam \
|
pthread_getschedparam pthread_setschedparam \
|
||||||
|
pthread_setschedprio \
|
||||||
pthread_attr_init pthread_attr_destroy \
|
pthread_attr_init pthread_attr_destroy \
|
||||||
pthread_attr_getdetachstate pthread_attr_setdetachstate \
|
pthread_attr_getdetachstate pthread_attr_setdetachstate \
|
||||||
pthread_attr_getguardsize pthread_attr_setguardsize \
|
pthread_attr_getguardsize pthread_attr_setguardsize \
|
||||||
|
|
|
||||||
|
|
@ -228,6 +228,8 @@ libpthread {
|
||||||
# New affinity interfaces.
|
# New affinity interfaces.
|
||||||
pthread_getaffinity_np; pthread_setaffinity_np;
|
pthread_getaffinity_np; pthread_setaffinity_np;
|
||||||
pthread_attr_getaffinity_np; pthread_attr_setaffinity_np;
|
pthread_attr_getaffinity_np; pthread_attr_setaffinity_np;
|
||||||
|
|
||||||
|
pthread_setschedprio;
|
||||||
}
|
}
|
||||||
|
|
||||||
GLIBC_PRIVATE {
|
GLIBC_PRIVATE {
|
||||||
|
|
|
||||||
|
|
@ -373,6 +373,10 @@ extern int pthread_getschedparam (pthread_t __target_thread,
|
||||||
struct sched_param *__restrict __param)
|
struct sched_param *__restrict __param)
|
||||||
__THROW;
|
__THROW;
|
||||||
|
|
||||||
|
/* Set the scheduling priority for TARGET_THREAD. */
|
||||||
|
extern int pthread_setschedprio (pthread_t __target_thread, int __prio)
|
||||||
|
__THROW;
|
||||||
|
|
||||||
|
|
||||||
#ifdef __USE_UNIX98
|
#ifdef __USE_UNIX98
|
||||||
/* Determine level of concurrency. */
|
/* Determine level of concurrency. */
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue