mirror of git://sourceware.org/git/glibc.git
Fri Nov 3 17:27:49 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
* sysdeps/mach/hurd/sendto.c: Don't pass BINDING arg to socket_create_address. * sysdeps/mach/hurd/connect.c: Likewise. * sysdeps/mach/hurd/bind.c: Likewise. * hurd/hurdprio.c (_hurd_priority_which_map): Pass threadwaits args to proc_getprocinfo. * sysdeps/mach/hurd/getpriority.c: Likewise. * hurd/hurdmsg.c (_S_msg_report_wait): New stub function.
This commit is contained in:
parent
27cc33c3b4
commit
853f0eead1
13
ChangeLog
13
ChangeLog
|
@ -1,3 +1,16 @@
|
|||
Fri Nov 3 17:27:49 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
|
||||
|
||||
* sysdeps/mach/hurd/sendto.c: Don't pass BINDING arg to
|
||||
socket_create_address.
|
||||
* sysdeps/mach/hurd/connect.c: Likewise.
|
||||
* sysdeps/mach/hurd/bind.c: Likewise.
|
||||
|
||||
* hurd/hurdprio.c (_hurd_priority_which_map): Pass threadwaits
|
||||
args to proc_getprocinfo.
|
||||
* sysdeps/mach/hurd/getpriority.c: Likewise.
|
||||
|
||||
* hurd/hurdmsg.c (_S_msg_report_wait): New stub function.
|
||||
|
||||
Thu Nov 2 19:24:37 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
|
||||
|
||||
* sysdeps/unix/sysv/linux/i386/sysdep.S (errno): Define as common.
|
||||
|
|
|
@ -32,7 +32,7 @@ Cambridge, MA 02139, USA. */
|
|||
/* Snarfing and frobbing the init ports. */
|
||||
|
||||
kern_return_t
|
||||
_S_msg_get_init_port (mach_port_t msgport, mach_port_t auth, int which,
|
||||
_S_msg_get_init_port (mach_port_t msgport, mach_port_t auth, int which,
|
||||
mach_port_t *result, mach_msg_type_name_t *result_type)
|
||||
{
|
||||
AUTHCHECK;
|
||||
|
@ -278,8 +278,8 @@ _S_msg_set_init_ints (mach_port_t msgport, mach_port_t auth,
|
|||
|
||||
|
||||
kern_return_t
|
||||
_S_msg_get_fd (mach_port_t msgport, mach_port_t auth,
|
||||
int which, mach_port_t *result, mach_msg_type_name_t *result_type)
|
||||
_S_msg_get_fd (mach_port_t msgport, mach_port_t auth, int which,
|
||||
mach_port_t *result, mach_msg_type_name_t *result_type)
|
||||
{
|
||||
AUTHCHECK;
|
||||
|
||||
|
@ -449,3 +449,10 @@ _S_msg_set_dtable (mach_port_t process,
|
|||
kern_return_t
|
||||
_S_msg_startup_dosync (mach_port_t process)
|
||||
{ return EOPNOTSUPP; }
|
||||
|
||||
kern_return_t
|
||||
_S_msg_report_wait (mach_port_t process,
|
||||
mach_port_t thread,
|
||||
string_t wait_desc,
|
||||
int *wait_rpc)
|
||||
{ return EOPNOTSUPP; }
|
||||
|
|
|
@ -59,10 +59,16 @@ _hurd_priority_which_map (enum __priority_which which, int who,
|
|||
/* Get procinfo to check the owner. */
|
||||
int *oldpi = pi;
|
||||
mach_msg_type_number_t oldpisize = pisize;
|
||||
char *tw = 0;
|
||||
size_t twsz = 0;
|
||||
if (err = __USEPORT (PROC, __proc_getprocinfo (port, pids[i],
|
||||
pi_flags,
|
||||
&pi, &pisize)))
|
||||
&pi, &pisize,
|
||||
&tw, &twsz)))
|
||||
continue;
|
||||
if (twsz)
|
||||
/* Gratuitous. */
|
||||
__vm_deallocate (__mach_task_self (), tw, twsz);
|
||||
if (pi != oldpi && oldpi != pibuf)
|
||||
/* Old buffer from last call was not reused; free it. */
|
||||
__vm_deallocate (__mach_task_self (),
|
||||
|
|
|
@ -1,26 +0,0 @@
|
|||
#include <hurd.h>
|
||||
|
||||
/* XXX */
|
||||
#define STUB(fn) error_t fn (mach_port_t port) { return EOPNOTSUPP; }
|
||||
|
||||
STUB(_S_get_init_ports)
|
||||
STUB(_S_set_init_ports)
|
||||
STUB(_S_get_init_port)
|
||||
STUB(_S_set_init_port)
|
||||
STUB(_S_get_init_ints)
|
||||
STUB(_S_set_init_ints)
|
||||
STUB(_S_get_init_int)
|
||||
STUB(_S_set_init_int)
|
||||
STUB(_S_get_dtable)
|
||||
STUB(_S_set_dtable)
|
||||
STUB(_S_get_fd)
|
||||
STUB(_S_set_fd)
|
||||
STUB(_S_get_environment)
|
||||
STUB(_S_set_environment)
|
||||
STUB(_S_get_env_variable)
|
||||
STUB(_S_set_env_variable)
|
||||
STUB(_S_io_select_done)
|
||||
STUB(_S_startup_dosync)
|
||||
|
||||
STUB(_S_dir_changed)
|
||||
STUB(_S_file_changed)
|
|
@ -96,7 +96,7 @@ DEFUN(bind, (fd, addr, len),
|
|||
err = __socket_create_address (port,
|
||||
addr->sa_family,
|
||||
(char *) addr, len,
|
||||
&aport, 1);
|
||||
&aport);
|
||||
if (! err)
|
||||
{
|
||||
err = __socket_bind (port, aport);
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* Copyright (C) 1992, 1994 Free Software Foundation, Inc.
|
||||
/* Copyright (C) 1992, 1994, 1995 Free Software Foundation, Inc.
|
||||
This file is part of the GNU C Library.
|
||||
|
||||
The GNU C Library is free software; you can redistribute it and/or
|
||||
|
@ -61,7 +61,7 @@ DEFUN(connect, (fd, addr, len),
|
|||
err = __socket_create_address (port,
|
||||
addr->sa_family,
|
||||
(char *) addr, len,
|
||||
&aport, 0);
|
||||
&aport);
|
||||
if (! err)
|
||||
{
|
||||
err = __socket_connect (port, aport);
|
||||
|
|
|
@ -41,9 +41,14 @@ getpriority (enum __priority_which which, int who)
|
|||
{
|
||||
int *oldpi = pi;
|
||||
unsigned int oldpisize = pisize;
|
||||
char *tw = 0;
|
||||
size_t twsz = 0;
|
||||
onerr = __USEPORT (PROC, __proc_getprocinfo (port, pid,
|
||||
PI_FETCH_TASKINFO,
|
||||
&pi, &pisize));
|
||||
&pi, &pisize,
|
||||
&tw, &twsz));
|
||||
if (twsz)
|
||||
__vm_deallocate (__mach_task_self (), tw, twsz);
|
||||
if (pi != oldpi && oldpi != pibuf)
|
||||
/* Old buffer from last call was not reused; free it. */
|
||||
__vm_deallocate (__mach_task_self (),
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* Copyright (C) 1994 Free Software Foundation, Inc.
|
||||
/* Copyright (C) 1994, 1995 Free Software Foundation, Inc.
|
||||
This file is part of the GNU C Library.
|
||||
|
||||
The GNU C Library is free software; you can redistribute it and/or
|
||||
|
@ -63,7 +63,7 @@ DEFUN(sendto, (fd, buf, n, flags, addr, addr_len),
|
|||
addr->sa_family,
|
||||
(char *) addr,
|
||||
addr_len,
|
||||
&aport, 1);
|
||||
&aport);
|
||||
if (! err)
|
||||
{
|
||||
/* Send the data. */
|
||||
|
|
Loading…
Reference in New Issue