diff options
| author | Daniel Eischen <deischen@FreeBSD.org> | 2002-11-16 06:35:53 +0000 |
|---|---|---|
| committer | Daniel Eischen <deischen@FreeBSD.org> | 2002-11-16 06:35:53 +0000 |
| commit | 2be05b70c9be806a2e5edf3fda36628a81ed3595 (patch) | |
| tree | 7153d8e405a5cd14ef74512c9e674270132975b7 /sys/powerpc/aim | |
| parent | 3d8ce33a50d2ddac133ac799f4334d5b73f0b218 (diff) | |
Notes
Diffstat (limited to 'sys/powerpc/aim')
| -rw-r--r-- | sys/powerpc/aim/machdep.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/sys/powerpc/aim/machdep.c b/sys/powerpc/aim/machdep.c index a14d96622de6d..ffb5070834bb4 100644 --- a/sys/powerpc/aim/machdep.c +++ b/sys/powerpc/aim/machdep.c @@ -638,6 +638,20 @@ freebsd4_sigreturn(struct thread *td, struct freebsd4_sigreturn_args *uap) } #endif +int +get_mcontext(struct thread *td, mcontext_t *mcp) +{ + + return (ENOSYS); +} + +int +set_mcontext(struct thread *td, const mcontext_t *mcp) +{ + + return (ENOSYS); +} + void cpu_boot(int howto) { |
