diff options
author | Miles Bader <miles@gnu.org> | 1997-02-20 04:30:35 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 1997-02-20 04:30:35 +0000 |
commit | 22ca6e7e00ceb51fcd6714fcdac100baf9187882 (patch) | |
tree | e146e493cb8660b0287f08acbb13ed5729b2b821 /libthreads | |
parent | ce82532de18cc24b2085816530db6391a5a815e6 (diff) |
(__hurd_threadvar_stack_mask, __hurd_threadvar_stack_offset,
__hurd_threadvar_max):
Make extern.
Diffstat (limited to 'libthreads')
-rw-r--r-- | libthreads/stack.c | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/libthreads/stack.c b/libthreads/stack.c index bc4ef8cd..def4dc69 100644 --- a/libthreads/stack.c +++ b/libthreads/stack.c @@ -26,6 +26,11 @@ /* * HISTORY * $Log: stack.c,v $ + * Revision 1.5 1995/12/10 13:41:30 roland + * (addr_range_check, probe_stack): Functions #if 0'd out. + * (stack_init): Don't call probe_stack or frob old stack at all. + * Default cthread_stack_size to 16 pages if it is zero. + * * Revision 1.4 1994/05/05 16:00:09 roland * entered into RCS * @@ -282,9 +287,9 @@ probe_stack(stack_bottom, stack_top) #endif /* For GNU: */ -unsigned long int __hurd_threadvar_stack_mask; -unsigned long int __hurd_threadvar_stack_offset; -unsigned int __hurd_threadvar_max; +extern unsigned long int __hurd_threadvar_stack_mask; +extern unsigned long int __hurd_threadvar_stack_offset; +extern unsigned int __hurd_threadvar_max; vm_offset_t stack_init(p) |