diff options
author | Artur Grabowski <art@cvs.openbsd.org> | 2002-01-04 14:46:19 +0000 |
---|---|---|
committer | Artur Grabowski <art@cvs.openbsd.org> | 2002-01-04 14:46:19 +0000 |
commit | 11f10be4082824a0c718baeb53f777ac0fca1754 (patch) | |
tree | fb359585f0abe25b443a743859e19cd234c20237 /lib/libc_r/arch | |
parent | 865150a5c9d0eb9c6c1f941ad34315f52a71e72e (diff) |
Let's start by making the stack pointer 64 bit and nobody will get hurt.
Diffstat (limited to 'lib/libc_r/arch')
-rw-r--r-- | lib/libc_r/arch/alpha/uthread_machdep.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc_r/arch/alpha/uthread_machdep.h b/lib/libc_r/arch/alpha/uthread_machdep.h index 1caf9b0d7a0..9bd580d5f1c 100644 --- a/lib/libc_r/arch/alpha/uthread_machdep.h +++ b/lib/libc_r/arch/alpha/uthread_machdep.h @@ -1,6 +1,6 @@ -/* $OpenBSD: uthread_machdep.h,v 1.7 2000/10/05 13:27:55 d Exp $ */ +/* $OpenBSD: uthread_machdep.h,v 1.8 2002/01/04 14:46:18 art Exp $ */ /* David Leonard, <d@csee.uq.edu.au>. Public domain. */ struct _machdep_state { - int sp; + u_int64_t sp; }; |