git: 2a2556879b4f - main - syscalls.master: mark _exit as not returning
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 08 Aug 2025 09:37:45 UTC
The branch main has been updated by brooks: URL: https://cgit.FreeBSD.org/src/commit/?id=2a2556879b4f43146d3ce51d7cffd7354caff6dd commit 2a2556879b4f43146d3ce51d7cffd7354caff6dd Author: Brooks Davis <brooks@FreeBSD.org> AuthorDate: 2025-08-08 09:30:17 +0000 Commit: Brooks Davis <brooks@FreeBSD.org> CommitDate: 2025-08-08 09:30:17 +0000 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 9329a4213828..53b5d3cbbba9 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 );