mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-09 23:00:07 +00:00
* td_thr_get_info.c (td_thr_get_info): Initialize schedpolicy in
the special case [Coverity CID 251].
This commit is contained in:
parent
88a3b8f9ac
commit
2191e7ffa2
@ -1,3 +1,8 @@
|
|||||||
|
2009-02-06 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
* td_thr_get_info.c (td_thr_get_info): Initialize schedpolicy in
|
||||||
|
the special case [Coverity CID 251].
|
||||||
|
|
||||||
2008-03-25 Roland McGrath <roland@redhat.com>
|
2008-03-25 Roland McGrath <roland@redhat.com>
|
||||||
|
|
||||||
[BZ #5983]
|
[BZ #5983]
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/* Get thread information.
|
/* Get thread information.
|
||||||
Copyright (C) 1999,2000,2001,2002,2003,2007 Free Software Foundation, Inc.
|
Copyright (C) 1999-2003,2007,2009 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>, 1999.
|
Contributed by Ulrich Drepper <drepper@redhat.com>, 1999.
|
||||||
|
|
||||||
@ -38,6 +38,7 @@ td_thr_get_info (const td_thrhandle_t *th, td_thrinfo_t *infop)
|
|||||||
copy = NULL;
|
copy = NULL;
|
||||||
tls = 0;
|
tls = 0;
|
||||||
cancelhandling = 0;
|
cancelhandling = 0;
|
||||||
|
schedpolicy = SCHED_OTHER;
|
||||||
schedprio = 0;
|
schedprio = 0;
|
||||||
tid = 0;
|
tid = 0;
|
||||||
err = DB_GET_VALUE (report_events, th->th_ta_p,
|
err = DB_GET_VALUE (report_events, th->th_ta_p,
|
||||||
|
Loading…
Reference in New Issue
Block a user