diff options
| author | reinoud <reinoud@NetBSD.org> | 2018-08-01 09:46:46 +0000 |
|---|---|---|
| committer | reinoud <reinoud@NetBSD.org> | 2018-08-01 09:46:46 +0000 |
| commit | 9974c2ca5beea29d4e29b5fc8a691763098ff06b (patch) | |
| tree | 0e2542fd27dc9c47739c769a9d8dbd319614fbf6 /sys/arch/usermode/include/thunk.h | |
| parent | 9502d81bf825493884aa48c22b1f37190b00d79f (diff) | |
Add headers for support functions for kgdb
Diffstat (limited to 'sys/arch/usermode/include/thunk.h')
| -rw-r--r-- | sys/arch/usermode/include/thunk.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/sys/arch/usermode/include/thunk.h b/sys/arch/usermode/include/thunk.h index 5dfacdbdfe7..c966ab129ad 100644 --- a/sys/arch/usermode/include/thunk.h +++ b/sys/arch/usermode/include/thunk.h @@ -1,4 +1,4 @@ -/* $NetBSD: thunk.h,v 1.65 2018/06/04 19:53:01 reinoud Exp $ */ +/* $NetBSD: thunk.h,v 1.66 2018/08/01 09:46:46 reinoud Exp $ */ /*- * Copyright (c) 2011 Jared D. McNeill <jmcneill@invisible.ca> @@ -127,6 +127,11 @@ int thunk_mkstemp(char *); int thunk_unlink(const char *); pid_t thunk_getpid(void); +int thunk_gdb_open(void); +int thunk_gdb_accept(int sockfd); +int thunk_kgdb_getc(int fd, char *ch); +int thunk_kgdb_putc(int fd, char ch); + int thunk_sigaction(int, const struct sigaction *, struct sigaction *); int thunk_sigaltstack(const stack_t *, stack_t *); void thunk_signal(int, void (*)(int)); |
