mirror of
https://sourceware.org/git/glibc.git
synced 2025-01-18 14:40:06 +00:00
2002-04-23 Roland McGrath <roland@frob.com>
* sysdeps/mach/hurd/send.c: int -> size_t for WROTE. * sysdeps/mach/hurd/sendto.c: Likewise. * hurd/hurdioctl.c (siocgifconf): int -> size_t for DATA_LEN. * sysdeps/mach/hurd/wait4.c (__wait4): natural_t -> int for SIGCODE. * sysdeps/mach/hurd/getpriority.c: unsigned int -> size_t for PISIZE.
This commit is contained in:
parent
f0b1c8ea85
commit
b62b62acf0
@ -1,5 +1,5 @@
|
|||||||
/* ioctl commands which must be done in the C library.
|
/* ioctl commands which must be done in the C library.
|
||||||
Copyright (C) 1994,95,96,97,99,2001 Free Software Foundation, Inc.
|
Copyright (C) 1994,95,96,97,99,2001,02 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
|
||||||
@ -311,7 +311,7 @@ static int
|
|||||||
siocgifconf (int fd, int request, struct ifconf *ifc)
|
siocgifconf (int fd, int request, struct ifconf *ifc)
|
||||||
{
|
{
|
||||||
error_t err;
|
error_t err;
|
||||||
int data_len = ifc->ifc_len;
|
size_t data_len = ifc->ifc_len;
|
||||||
char *data = ifc->ifc_buf;
|
char *data = ifc->ifc_buf;
|
||||||
|
|
||||||
if (data_len <= 0)
|
if (data_len <= 0)
|
||||||
|
@ -31,7 +31,7 @@ getpriority (enum __priority_which which, id_t who)
|
|||||||
int maxpri = INT_MIN;
|
int maxpri = INT_MIN;
|
||||||
struct procinfo *pip; /* Just for sizeof. */
|
struct procinfo *pip; /* Just for sizeof. */
|
||||||
int pibuf[sizeof *pip + 2 * sizeof (pip->threadinfos[0])], *pi = pibuf;
|
int pibuf[sizeof *pip + 2 * sizeof (pip->threadinfos[0])], *pi = pibuf;
|
||||||
unsigned int pisize = sizeof pibuf / sizeof pibuf[0];
|
size_t pisize = sizeof pibuf / sizeof pibuf[0];
|
||||||
|
|
||||||
error_t getonepriority (pid_t pid, struct procinfo *pip)
|
error_t getonepriority (pid_t pid, struct procinfo *pip)
|
||||||
{
|
{
|
||||||
@ -40,7 +40,7 @@ getpriority (enum __priority_which which, id_t who)
|
|||||||
else
|
else
|
||||||
{
|
{
|
||||||
int *oldpi = pi;
|
int *oldpi = pi;
|
||||||
unsigned int oldpisize = pisize;
|
size_t oldpisize = pisize;
|
||||||
char *tw = 0;
|
char *tw = 0;
|
||||||
size_t twsz = 0;
|
size_t twsz = 0;
|
||||||
int flags = PI_FETCH_TASKINFO;
|
int flags = PI_FETCH_TASKINFO;
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* Copyright (C) 1994, 1996, 1997, 2001 Free Software Foundation, Inc.
|
/* Copyright (C) 1994,96,97,2001,02 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
|
||||||
@ -31,7 +31,7 @@ __send (fd, buf, n, flags)
|
|||||||
int flags;
|
int flags;
|
||||||
{
|
{
|
||||||
error_t err;
|
error_t err;
|
||||||
int wrote;
|
size_t wrote;
|
||||||
|
|
||||||
err = HURD_DPORT_USE (fd, __socket_send (port, MACH_PORT_NULL,
|
err = HURD_DPORT_USE (fd, __socket_send (port, MACH_PORT_NULL,
|
||||||
flags, buf, n,
|
flags, buf, n,
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* Copyright (C) 1994, 1995, 1996, 1997, 1999, 2001 Free Software Foundation, Inc.
|
/* Copyright (C) 1994,95,96,97,99,2001,02 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
|
||||||
@ -36,7 +36,7 @@ sendto (int fd,
|
|||||||
{
|
{
|
||||||
addr_port_t aport;
|
addr_port_t aport;
|
||||||
error_t err;
|
error_t err;
|
||||||
int wrote;
|
size_t wrote;
|
||||||
|
|
||||||
if (addr->sun_family == AF_LOCAL)
|
if (addr->sun_family == AF_LOCAL)
|
||||||
{
|
{
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* Copyright (C) 1993,94,95,96,97,98,99 Free Software Foundation, Inc.
|
/* Copyright (C) 1993,94,95,96,97,98,99,2002 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
|
||||||
@ -29,7 +29,7 @@ __wait4 (pid_t pid, __WAIT_STATUS_DEFN stat_loc, int options,
|
|||||||
pid_t dead;
|
pid_t dead;
|
||||||
error_t err;
|
error_t err;
|
||||||
struct rusage ignored;
|
struct rusage ignored;
|
||||||
natural_t sigcode;
|
int sigcode;
|
||||||
int dummy;
|
int dummy;
|
||||||
|
|
||||||
err = __USEPORT (PROC, __proc_wait (port, pid, options,
|
err = __USEPORT (PROC, __proc_wait (port, pid, options,
|
||||||
|
Loading…
Reference in New Issue
Block a user