From: deraadt Date: Sat, 8 May 2021 05:31:07 +0000 (+0000) Subject: kernel setjmp saves 14 registers, not 13. ddb continue now works. X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=821603ee0eb6c0b795de75bb2599fc1fc1cccb7d;p=openbsd kernel setjmp saves 14 registers, not 13. ddb continue now works. ok jsg --- diff --git a/sys/arch/riscv64/include/_types.h b/sys/arch/riscv64/include/_types.h index d1d39d786fe..444d741c069 100644 --- a/sys/arch/riscv64/include/_types.h +++ b/sys/arch/riscv64/include/_types.h @@ -1,4 +1,4 @@ -/* $OpenBSD: _types.h,v 1.1 2021/04/23 02:42:16 drahn Exp $ */ +/* $OpenBSD: _types.h,v 1.2 2021/05/08 05:31:07 deraadt Exp $ */ /*- * Copyright (c) 1990, 1993 * The Regents of the University of California. All rights reserved. @@ -36,7 +36,7 @@ #if defined(_KERNEL) typedef struct label_t { - long val[13]; + long val[14]; } label_t; #endif