mirror of
https://sourceware.org/git/glibc.git
synced 2025-08-01 10:06:57 +03:00
* sysdeps/posix/libc_fatal.c (__libc_message): Add a const, a cast.
* hurd/lookup-retry.c (__hurd_file_name_lookup_retry): Fix cast. * hurd/report-wait.c (_S_msg_report_wait): Likewise. * include/sys/xattr.h: New file.
This commit is contained in:
@ -1,3 +1,12 @@
|
|||||||
|
2005-12-29 Roland McGrath <roland@frob.com>
|
||||||
|
|
||||||
|
* sysdeps/posix/libc_fatal.c (__libc_message): Add a const, a cast.
|
||||||
|
|
||||||
|
* hurd/lookup-retry.c (__hurd_file_name_lookup_retry): Fix cast.
|
||||||
|
* hurd/report-wait.c (_S_msg_report_wait): Likewise.
|
||||||
|
|
||||||
|
* include/sys/xattr.h: New file.
|
||||||
|
|
||||||
2005-12-28 Roland McGrath <roland@redhat.com>
|
2005-12-28 Roland McGrath <roland@redhat.com>
|
||||||
|
|
||||||
* hurd/sigunwind.c: Include <stdint.h>.
|
* hurd/sigunwind.c: Include <stdint.h>.
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/* hairy bits of Hurd file name lookup
|
/* hairy bits of Hurd file name lookup
|
||||||
Copyright (C) 1992,1993,1994,1995,1996,1997,1999,2001,2002,2003
|
Copyright (C) 1992,1993,1994,1995,1996,1997,1999,2001,2002,2003,2005
|
||||||
Free Software Foundation, Inc.
|
Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
|
|
||||||
@ -247,7 +247,7 @@ __hurd_file_name_lookup_retry (error_t (*use_init_port)
|
|||||||
char *p;
|
char *p;
|
||||||
/* XXX want client's host */
|
/* XXX want client's host */
|
||||||
if (err = __host_info (__mach_host_self (), HOST_BASIC_INFO,
|
if (err = __host_info (__mach_host_self (), HOST_BASIC_INFO,
|
||||||
(natural_t *) &hostinfo,
|
(integer_t *) &hostinfo,
|
||||||
&hostinfocnt))
|
&hostinfocnt))
|
||||||
return err;
|
return err;
|
||||||
if (hostinfocnt != HOST_BASIC_INFO_COUNT)
|
if (hostinfocnt != HOST_BASIC_INFO_COUNT)
|
||||||
|
@ -140,7 +140,7 @@ _S_msg_report_wait (mach_port_t msgport, thread_t thread,
|
|||||||
error_t err;
|
error_t err;
|
||||||
|
|
||||||
err = __thread_get_state (thread, MACHINE_THREAD_STATE_FLAVOR,
|
err = __thread_get_state (thread, MACHINE_THREAD_STATE_FLAVOR,
|
||||||
(integer_t *) &state, &count);
|
(natural_t *) &state, &count);
|
||||||
if (err)
|
if (err)
|
||||||
return err;
|
return err;
|
||||||
assert (count == MACHINE_THREAD_STATE_COUNT);
|
assert (count == MACHINE_THREAD_STATE_COUNT);
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
/* Copyright (C) 1993,1994,1995,1997,2000,2004 Free Software Foundation, Inc.
|
/* Copyright (C) 1993,1994,1995,1997,2000,2004,2005
|
||||||
|
Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
|
|
||||||
The GNU C Library is free software; you can redistribute it and/or
|
The GNU C Library is free software; you can redistribute it and/or
|
||||||
@ -73,7 +74,7 @@ __libc_message (int do_abort, const char *fmt, ...)
|
|||||||
while (*cp != '\0')
|
while (*cp != '\0')
|
||||||
{
|
{
|
||||||
/* Find the next "%s" or the end of the string. */
|
/* Find the next "%s" or the end of the string. */
|
||||||
char *next = cp;
|
const char *next = cp;
|
||||||
while (next[0] != '%' || next[1] != 's')
|
while (next[0] != '%' || next[1] != 's')
|
||||||
{
|
{
|
||||||
next = __strchrnul (next + 1, '%');
|
next = __strchrnul (next + 1, '%');
|
||||||
@ -114,7 +115,7 @@ __libc_message (int do_abort, const char *fmt, ...)
|
|||||||
|
|
||||||
for (int cnt = nlist - 1; cnt >= 0; --cnt)
|
for (int cnt = nlist - 1; cnt >= 0; --cnt)
|
||||||
{
|
{
|
||||||
iov[cnt].iov_base = list->str;
|
iov[cnt].iov_base = (char *) list->str;
|
||||||
iov[cnt].iov_len = list->len;
|
iov[cnt].iov_len = list->len;
|
||||||
total += list->len;
|
total += list->len;
|
||||||
list = list->next;
|
list = list->next;
|
||||||
|
Reference in New Issue
Block a user