summaryrefslogtreecommitdiff
path: root/api/except.txt
Commit message (Collapse)AuthorAgeFilesLines
* api: add NetBSD/ARM EABI exceptions.Shenghou Ma2014-03-061-0/+4
| | | | | | | LGTM=bradfitz R=golang-codereviews, bradfitz CC=golang-codereviews https://codereview.appspot.com/71940043
* api: add FreeBSD 10 exceptionsMikio Hara2014-03-041-0/+76
| | | | | | | | | Update issue 7193 LGTM=minux.ma R=golang-codereviews, rsc, minux.ma, iant CC=golang-codereviews https://codereview.appspot.com/57210043
* api: whitelist change to unicode.VersionBrad Fitzpatrick2014-02-181-0/+1
| | | | | | | | | Unbreaks the build. LGTM=r R=r CC=golang-codereviews https://codereview.appspot.com/65650043
* api: add Fchflags exception to more platformsBrad Fitzpatrick2014-01-221-0/+4
| | | | | | | | Unbreaks the build. R=golang-codereviews, dsymonds CC=golang-codereviews https://codereview.appspot.com/53820045
* api: update except.txt and next.txt to reflect openbsd system ABI breakJoel Sing2014-01-111-0/+300
| | | | | | | | Update issue 7049 R=golang-codereviews, minux.ma, mikioh.mikioh CC=golang-codereviews https://codereview.appspot.com/49470052
* api: update go1.1, except and next.txt with constant valuesBrad Fitzpatrick2013-09-061-0/+6
| | | | | | | | | | | O_SYNC changes only on linux-arm (and linux-arm-cgo), but changes to match O_SYNC on linux-{386,amd64} and what Linux upstream now uses. See discussion and links on https://codereview.appspot.com/13261050/ R=golang-dev, r CC=golang-dev https://codereview.appspot.com/13575045
* api: update next.txt, except.txtRob Pike2013-08-201-0/+1
| | | | | | R=golang-dev, bradfitz CC=golang-dev https://codereview.appspot.com/12926046
* syscall: fix prototype of Fchflags (API change)Shenghou Ma2013-05-071-0/+6
| | | | | | | | API change, but the old API is obviously wrong. R=golang-dev, iant, r, rsc CC=golang-dev https://codereview.appspot.com/9157044
* net: change ListenUnixgram signature to return UnixConn instead of UDPConnMikio Hara2012-12-161-0/+1
| | | | | | | | | | | | | | | This CL breaks Go 1 API compatibility but it doesn't matter because previous ListenUnixgram doesn't work in any use cases, oops. The public API change is: -pkg net, func ListenUnixgram(string, *UnixAddr) (*UDPConn, error) +pkg net, func ListenUnixgram(string, *UnixAddr) (*UnixConn, error) Fixes issue 3875. R=rsc, golang-dev, dave CC=golang-dev https://codereview.appspot.com/6937059
* cmd/api: add exception fileRob Pike2012-10-041-0/+2
Fixes build. R=golang-dev, adg, bradfitz, dsymonds, dave CC=golang-dev http://codereview.appspot.com/6586074