diff options
author | Roland McGrath <roland@gnu.org> | 2002-05-27 02:50:13 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2002-05-27 02:50:13 +0000 |
commit | 60c0b9b62c8243c08d242b8cedba3438bf3ce27a (patch) | |
tree | 07ccaef5416998248df458197ce77b866f82cbee | |
parent | 2d3e2366b453da9b4288c30f3f894fccef1e7914 (diff) |
2002-05-26 Roland McGrath <roland@frob.com>
* alpha/thread.c: #if 0 out the silly bzero decl.
-rw-r--r-- | libthreads/alpha/thread.c | 26 |
1 files changed, 17 insertions, 9 deletions
diff --git a/libthreads/alpha/thread.c b/libthreads/alpha/thread.c index 25e65df1..2bf5ff64 100644 --- a/libthreads/alpha/thread.c +++ b/libthreads/alpha/thread.c @@ -1,39 +1,45 @@ -/* +/* * Mach Operating System * Copyright (c) 1992 Carnegie Mellon University * All Rights Reserved. - * + * * Permission to use, copy, modify and distribute this software and its * documentation is hereby granted, provided that both the copyright * notice and this permission notice appear in all copies of the * software, derivative works or modified versions, and any portions * thereof, and that both notices appear in supporting documentation. - * + * * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS" * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR * ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE. - * + * * Carnegie Mellon requests users of this software to return to - * + * * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU * School of Computer Science * Carnegie Mellon University * Pittsburgh PA 15213-3890 - * + * * any improvements or extensions that they make and grant Carnegie Mellon * the rights to redistribute these changes. */ /* * HISTORY - * $Log: thread.c,v $ + * $Log: thread.c,v $ + * Revision 1.1 2002/05/27 02:13:47 roland + * 2002-05-26 Roland McGrath <roland@frob.com> + * + * * alpha/cthreads.h, alpha/thread.c, alpha/csw.S, alpha/lock.S: + * New files, verbatim from CMU release MK83a user/threads/alpha. + * * Revision 2.3 93/02/01 09:56:49 danner * mach/mach.h -> mach.h * [93/01/28 danner] - * + * * Revision 2.2 93/01/14 18:04:35 danner * Created. * [92/05/31 af] - * + * */ /* * alpha/thread.c @@ -47,10 +53,12 @@ #include <mach.h> +#if 0 /* * C library imports: */ extern bzero(); +#endif /* * Set up the initial state of a MACH thread |