summaryrefslogtreecommitdiff
path: root/hurd
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>1998-10-19 00:45:33 +0000
committerRoland McGrath <roland@gnu.org>1998-10-19 00:45:33 +0000
commit7d25696a35c32b242425aa0e77d1b4d938d1262e (patch)
tree4c2c785ca45bfb4c5db226da603efc76bcd65744 /hurd
parent3f804c953da3ed97d8f50a258e6ac9ce671ede31 (diff)
1998-10-19 Roland McGrath <roland@baalperazim.frob.com>
* hurd/hurd/threadvar.h (enum __hurd_threadvar_index): Add _HURD_THREADVAR_DL_ERROR. * hurd/Makefile (user-interfaces): Add login, password. * sysdeps/mach/hurd/Makefile (+cflags): Append -Wno-parentheses.
Diffstat (limited to 'hurd')
-rw-r--r--hurd/Makefile4
-rw-r--r--hurd/hurd/threadvar.h3
2 files changed, 5 insertions, 2 deletions
diff --git a/hurd/Makefile b/hurd/Makefile
index 441c66c78c..85aa30ab88 100644
--- a/hurd/Makefile
+++ b/hurd/Makefile
@@ -35,7 +35,9 @@ user-interfaces := $(addprefix hurd/,\
process process_request \
msg msg_reply msg_request \
exec exec_startup crash interrupt \
- fs fsys io term tioctl socket ifsock)
+ fs fsys io term tioctl socket ifsock \
+ login password \
+ )
server-interfaces := hurd/msg faultexc
routines = hurdstartup hurdinit \
diff --git a/hurd/hurd/threadvar.h b/hurd/hurd/threadvar.h
index b10efe9ada..55cb5af3e8 100644
--- a/hurd/hurd/threadvar.h
+++ b/hurd/hurd/threadvar.h
@@ -1,5 +1,5 @@
/* Internal per-thread variables for the Hurd.
- Copyright (C) 1994, 1995, 1997 Free Software Foundation, Inc.
+ Copyright (C) 1994, 95, 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
@@ -61,6 +61,7 @@ enum __hurd_threadvar_index
_HURD_THREADVAR_SIGSTATE, /* This thread's `struct hurd_sigstate'. */
_HURD_THREADVAR_DYNAMIC_USER, /* Dynamically-assigned user variables. */
_HURD_THREADVAR_MALLOC, /* For use of malloc. */
+ _HURD_THREADVAR_DL_ERROR, /* For use of -ldl and dynamic linker. */
_HURD_THREADVAR_MAX /* Default value for __hurd_threadvar_max. */
};