From 2a2556879b4f43146d3ce51d7cffd7354caff6dd Mon Sep 17 00:00:00 2001 From: Brooks Davis Date: Fri, 8 Aug 2025 10:30:17 +0100 Subject: [PATCH] syscalls.master: mark _exit as not returning Reviewed by: imp, kib Differential Revision: https://reviews.freebsd.org/D51674 --- sys/kern/syscalls.master | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/kern/syscalls.master b/sys/kern/syscalls.master index 9329a421382..53b5d3cbbba 100644 --- a/sys/kern/syscalls.master +++ b/sys/kern/syscalls.master @@ -125,7 +125,7 @@ ... ); } -1 AUE_EXIT STD|CAPENABLED { +1 AUE_EXIT STD|CAPENABLED|NORETURN { void _exit( int rval );