From: qmuntal Date: Sun, 10 Dec 2023 17:38:08 +0000 (+0100) Subject: doc: document SetUnhandledExceptionFilter interop X-Git-Tag: go1.22rc1~26 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=962dade46b07a7d914b23de0bc8cc66e0c5b7ced;p=gostls13.git doc: document SetUnhandledExceptionFilter interop For #50951. For #61422. Change-Id: Ib9038a00de8f4d8606443e9acd414402023cde63 Reviewed-on: https://go-review.googlesource.com/c/go/+/548319 Reviewed-by: Alex Brainman LUCI-TryBot-Result: Go LUCI Reviewed-by: Bryan Mills Reviewed-by: Cherry Mui --- diff --git a/doc/go1.22.html b/doc/go1.22.html index daae19fdbc..8bcaeedc00 100644 --- a/doc/go1.22.html +++ b/doc/go1.22.html @@ -203,6 +203,13 @@ defer func() { workaround will be removed in a future release.

+

+ On the windows/amd64 port, programs linking or loading Go libraries built with + -buildmode=c-archive or -buildmode=c-shared can now use + the SetUnhandledExceptionFilter Win32 function to catch exceptions not handled + by the Go runtime. Note that this was already supported on the windows/386 port. +

+

Compiler