mirror of
https://sourceware.org/git/glibc.git
synced 2025-01-05 01:00:14 +00:00
* hurd/hurdsig.c (write_corefile): Fix swapped arguments to __dir_link.
Reported by Jon Arney <jarney1@cox.net>. 2002-02-23 Roland McGrath <roland@frob.com> * hurd/hurd/threadvar.h (__hurd_threadvar_location): Add __THROW to declaration. (__hurd_errno_location): Function removed.
This commit is contained in:
parent
2fb1a8624b
commit
70481be8b5
11
ChangeLog
11
ChangeLog
@ -1,3 +1,14 @@
|
|||||||
|
2002-03-09 Roland McGrath <roland@frob.com>
|
||||||
|
|
||||||
|
* hurd/hurdsig.c (write_corefile): Fix swapped arguments to __dir_link.
|
||||||
|
Reported by Jon Arney <jarney1@cox.net>.
|
||||||
|
|
||||||
|
2002-02-23 Roland McGrath <roland@frob.com>
|
||||||
|
|
||||||
|
* hurd/hurd/threadvar.h (__hurd_threadvar_location): Add __THROW to
|
||||||
|
declaration.
|
||||||
|
(__hurd_errno_location): Function removed.
|
||||||
|
|
||||||
2002-03-06 Andreas Jaeger <aj@suse.de>
|
2002-03-06 Andreas Jaeger <aj@suse.de>
|
||||||
|
|
||||||
* sysdeps/unix/sysv/linux/x86_64/sys/reg.h: Add compatibility for
|
* sysdeps/unix/sysv/linux/x86_64/sys/reg.h: Add compatibility for
|
||||||
|
@ -198,7 +198,7 @@ write_corefile (int signo, const struct hurd_signal_detail *detail)
|
|||||||
if (! err && file != MACH_PORT_NULL)
|
if (! err && file != MACH_PORT_NULL)
|
||||||
/* The core dump into FILE succeeded, so now link it into the
|
/* The core dump into FILE succeeded, so now link it into the
|
||||||
directory. */
|
directory. */
|
||||||
err = __dir_link (file, coredir, name, 1);
|
err = __dir_link (coredir, file, name, 1);
|
||||||
__mach_port_deallocate (__mach_task_self (), file);
|
__mach_port_deallocate (__mach_task_self (), file);
|
||||||
__mach_port_deallocate (__mach_task_self (), coredir);
|
__mach_port_deallocate (__mach_task_self (), coredir);
|
||||||
return !err && file != MACH_PORT_NULL;
|
return !err && file != MACH_PORT_NULL;
|
||||||
|
Loading…
Reference in New Issue
Block a user