Deleted Added
full compact
machdep.c (106697) machdep.c (106977)
1/*
2 * Copyright (C) 1995, 1996 Wolfgang Solfrank.
3 * Copyright (C) 1995, 1996 TooLs GmbH.
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:

--- 42 unchanged lines hidden (view full) ---

51 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
52 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
53 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
54 * $NetBSD: machdep.c,v 1.74.2.1 2000/11/01 16:13:48 tv Exp $
55 */
56
57#ifndef lint
58static const char rcsid[] =
1/*
2 * Copyright (C) 1995, 1996 Wolfgang Solfrank.
3 * Copyright (C) 1995, 1996 TooLs GmbH.
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:

--- 42 unchanged lines hidden (view full) ---

51 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
52 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
53 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
54 * $NetBSD: machdep.c,v 1.74.2.1 2000/11/01 16:13:48 tv Exp $
55 */
56
57#ifndef lint
58static const char rcsid[] =
59 "$FreeBSD: head/sys/powerpc/aim/machdep.c 106697 2002-11-09 16:19:14Z des $";
59 "$FreeBSD: head/sys/powerpc/aim/machdep.c 106977 2002-11-16 06:35:53Z deischen $";
60#endif /* not lint */
61
62#include "opt_ddb.h"
63#include "opt_compat.h"
64#include "opt_msgbuf.h"
65
66#include <sys/param.h>
67#include <sys/systm.h>

--- 565 unchanged lines hidden (view full) ---

633int
634freebsd4_sigreturn(struct thread *td, struct freebsd4_sigreturn_args *uap)
635{
636
637 return sigreturn(td, (struct sigreturn_args *)uap);
638}
639#endif
640
60#endif /* not lint */
61
62#include "opt_ddb.h"
63#include "opt_compat.h"
64#include "opt_msgbuf.h"
65
66#include <sys/param.h>
67#include <sys/systm.h>

--- 565 unchanged lines hidden (view full) ---

633int
634freebsd4_sigreturn(struct thread *td, struct freebsd4_sigreturn_args *uap)
635{
636
637 return sigreturn(td, (struct sigreturn_args *)uap);
638}
639#endif
640
641int
642get_mcontext(struct thread *td, mcontext_t *mcp)
643{
644
645 return (ENOSYS);
646}
647
648int
649set_mcontext(struct thread *td, const mcontext_t *mcp)
650{
651
652 return (ENOSYS);
653}
654
641void
642cpu_boot(int howto)
643{
644}
645
646/*
647 * Shutdown the CPU as much as possible.
648 */

--- 167 unchanged lines hidden ---
655void
656cpu_boot(int howto)
657{
658}
659
660/*
661 * Shutdown the CPU as much as possible.
662 */

--- 167 unchanged lines hidden ---