mirror of git://sourceware.org/git/glibc.git
* Makefile ($(objpfx)multidir.mk): Use $(make-target-directory).
This commit is contained in:
parent
58c2859f14
commit
4fb907b741
|
|
@ -1,3 +1,7 @@
|
|||
2004-07-21 Roland McGrath <roland@redhat.com>
|
||||
|
||||
* Makefile ($(objpfx)multidir.mk): Use $(make-target-directory).
|
||||
|
||||
2004-07-02 Roland McGrath <roland@redhat.com>
|
||||
|
||||
* configure: Don't exit.
|
||||
|
|
|
|||
|
|
@ -1,3 +1,11 @@
|
|||
2004-07-21 Roland McGrath <roland@redhat.com>
|
||||
|
||||
* Makefile ($(objpfx)multidir.mk): Use $(make-target-directory).
|
||||
|
||||
2004-07-19 Roland McGrath <roland@redhat.com>
|
||||
|
||||
* tst-cancel4.c (tf_waitid): Use WEXITED flag bit if available.
|
||||
|
||||
2004-07-02 Roland McGrath <roland@redhat.com>
|
||||
|
||||
* configure: Don't exit.
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
/* Copyright (C) 2002, 2003 Free Software Foundation, Inc.
|
||||
/* Copyright (C) 2002, 2003, 2004 Free Software Foundation, Inc.
|
||||
This file is part of the GNU C Library.
|
||||
Contributed by Ulrich Drepper <drepper@redhat.com>, 2002.
|
||||
|
||||
|
|
@ -673,8 +673,11 @@ tf_waitid (void *arg)
|
|||
int s;
|
||||
pthread_cleanup_push (cl, NULL);
|
||||
|
||||
#ifndef WEXITED
|
||||
# define WEXITED 0
|
||||
#endif
|
||||
siginfo_t si;
|
||||
s = waitid (P_PID, pid, &si, 0);
|
||||
s = waitid (P_PID, pid, &si, WEXITED);
|
||||
|
||||
pthread_cleanup_pop (0);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue