mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-29 11:41:21 +03:00
Quash a warning in nptl/allocatestack.c
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
2011-07-14 Roland McGrath <roland@hack.frob.com>
|
||||||
|
|
||||||
|
* allocatestack.c (__reclaim_stacks): Use uintptr_t cast rather than
|
||||||
|
UINTMAX_C.
|
||||||
|
|
||||||
2011-06-30 Ulrich Drepper <drepper@gmail.com>
|
2011-06-30 Ulrich Drepper <drepper@gmail.com>
|
||||||
|
|
||||||
* nptl-init.c (__nptl_set_robust): New function.
|
* nptl-init.c (__nptl_set_robust): New function.
|
||||||
|
@ -824,7 +824,7 @@ __reclaim_stacks (void)
|
|||||||
if (in_flight_stack != 0)
|
if (in_flight_stack != 0)
|
||||||
{
|
{
|
||||||
bool add_p = in_flight_stack & 1;
|
bool add_p = in_flight_stack & 1;
|
||||||
list_t *elem = (list_t *) (in_flight_stack & ~UINTMAX_C (1));
|
list_t *elem = (list_t *) (in_flight_stack & ~(uintptr_t) 1);
|
||||||
|
|
||||||
if (add_p)
|
if (add_p)
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user