commit | 7406379fffb45e2ab84a0efcdadc997da98b57ce | [log] [tgz] |
---|---|---|
author | Alex Brainman <alex.brainman@gmail.com> | Wed Sep 14 16:19:45 2011 +1000 |
committer | Alex Brainman <alex.brainman@gmail.com> | Wed Sep 14 16:19:45 2011 +1000 |
tree | 8b48a2989b383911c37e52f10715da3b4c1956e9 | |
parent | 2b3b5cf4de0d90db85ac4e618ab9a3f383c50268 [diff] [blame] |
runtime: syscall to return both AX and DX for windows/386 Fixes #2181. R=golang-dev, jp CC=golang-dev https://golang.org/cl/5000042
diff --git a/src/pkg/runtime/runtime.h b/src/pkg/runtime/runtime.h index 6feedcb..8753842 100644 --- a/src/pkg/runtime/runtime.h +++ b/src/pkg/runtime/runtime.h
@@ -307,7 +307,8 @@ void (*fn)(void*); uintptr n; // number of parameters void* args; // parameters - uintptr r; // return value + uintptr r1; // return values + uintptr r2; uintptr err; // error number };