]> git.lizzy.rs Git - rust.git/commit
Windows error codes: Add very very many from mingw
authorIan Jackson <ijackson@chiark.greenend.org.uk>
Fri, 18 Jun 2021 17:15:26 +0000 (18:15 +0100)
committerIan Jackson <ijackson@chiark.greenend.org.uk>
Fri, 18 Jun 2021 17:51:53 +0000 (18:51 +0100)
commit8a4b1e4c0bdf1f4279f4ebdce3d3aa4d73be3fb3
tree3ddc5eaeea17d752524eccc2b85f3ff32efc88d1
parent9580f3336b96e3da02f976e86ccf1122a20df32b
Windows error codes: Add very very many from mingw

Dump mingw-64's error codes into our source tree.

I have verified with these runes:

  $ f=library/std/src/sys/windows/c/errors.rs
  $ diff -ub <(git-cat-file blob HEAD~:$f | sort) <(cat $f | perl -pe 's/WSABASEERR \+ (\d+)/10000 + $1/e' |sort) |grep ^- |less

that this does not change any existing values.

Signed-off-by: Ian Jackson <ijackson@chiark.greenend.org.uk>
library/std/src/sys/windows/c/errors.rs