Commit 05cf357d authored by Nigel Tao's avatar Nigel Tao

Add EWOULDBLOCK to sycall_nacl.go.

R=rsc
CC=go-dev, golang-dev
https://golang.org/cl/1006045
parent f81d4719
...@@ -108,6 +108,10 @@ func Sleep(ns int64) (errno int) { ...@@ -108,6 +108,10 @@ func Sleep(ns int64) (errno int) {
// SYS_TLS_* // SYS_TLS_*
// SYS_SCHED_YIELD // SYS_SCHED_YIELD
// #define'd in NaCl but not picked up by mkerrors_nacl.sh.
const EWOULDBLOCK = EAGAIN
// Not implemented in NaCl but needed to compile other packages. // Not implemented in NaCl but needed to compile other packages.
const ( const (
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment