From: Elias Naur Date: Tue, 18 Dec 2018 20:32:48 +0000 (+0100) Subject: doc/go1.12: note that syscall.Getdirentries is no longer supported on iOS X-Git-Tag: go1.12beta1~1 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=9ded8b0e97588895e00e93299e4a4a748cfa3a4b;p=gostls13.git doc/go1.12: note that syscall.Getdirentries is no longer supported on iOS Change-Id: I4277f4130b460b42c5b51fd5a5e07f6c0e62163b Reviewed-on: https://go-review.googlesource.com/c/154720 Reviewed-by: Ian Lance Taylor --- diff --git a/doc/go1.12.html b/doc/go1.12.html index 1ef43d9cf0..f0957eeb7e 100644 --- a/doc/go1.12.html +++ b/doc/go1.12.html @@ -87,6 +87,11 @@ Do not send CLs removing the interior tags from such phrases.

libSystem is now used when making syscalls on Darwin, ensuring forward-compatibility with future versions of macOS and iOS. + + The switch to libSystem triggered additional App Store + checks for private API usage. Since it is considered private, + syscall.Getdirentries now always fails with + ENOSYS on iOS.

Tools