diff options
author | Roland McGrath <roland@gnu.org> | 1998-11-11 09:56:51 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1998-11-11 09:56:51 +0000 |
commit | 62495816a5df7632ef6cc6f0e6f09e135aa763a1 (patch) | |
tree | 15c2c1b07617600b9d1da5271928fe347be5abf5 /hurd/hurd.h | |
parent | 74eee8866db0c7e01216e6a73b9b19414a95b04b (diff) | |
download | glibc-62495816a5df7632ef6cc6f0e6f09e135aa763a1.tar.gz glibc-62495816a5df7632ef6cc6f0e6f09e135aa763a1.tar.xz glibc-62495816a5df7632ef6cc6f0e6f09e135aa763a1.zip |
1998-11-11 Roland McGrath <roland@baalperazim.frob.com>
* hurd/hurdsig.c (_hurdsig_init): Take new args, INTARRAY and INTARRAYSIZE. Initialize main thread's sigstate from INIT_SIG* ints. * hurd/hurd/signal.h: Update _hurdsig_init decl. * hurd/hurdinit.c (_hurd_proc_init): Take new args, INTARRAY and INTARRAYSIZE, pass them down to _hurdsig_init. * hurd/hurd.h: Update _hurd_proc_init decl.
Diffstat (limited to 'hurd/hurd.h')
-rw-r--r-- | hurd/hurd.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/hurd/hurd.h b/hurd/hurd.h index eb445d481a..98d726a592 100644 --- a/hurd/hurd.h +++ b/hurd/hurd.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1993, 1994, 1995, 1996, 1997 Free Software Foundation, Inc. +/* Copyright (C) 1993, 94, 95, 96, 97, 98 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 @@ -235,9 +235,12 @@ extern void _hurd_init (int flags, char **argv, mach_port_t *portarray, size_t portarraysize, int *intarray, size_t intarraysize); -/* Do startup handshaking with the proc server. */ +/* Do startup handshaking with the proc server, and initialize library data + structures that require proc server interaction. This includes + initializing signals; see _hurdsig_init in <hurd/signal.h>. */ -extern void _hurd_proc_init (char **argv); +extern void _hurd_proc_init (char **argv, + const int *intarray, size_t intarraysize); /* Return the socket server for sockaddr domain DOMAIN. If DEAD is |