Alex Brainman | ab4578a | 2014-11-20 12:24:03 +1100 | [diff] [blame] | 1 | // Copyright 2009 The Go Authors. All rights reserved. |
| 2 | // Use of this source code is governed by a BSD-style |
| 3 | // license that can be found in the LICENSE file. |
| 4 | |
| 5 | package runtime |
| 6 | |
Alex Brainman | ab4578a | 2014-11-20 12:24:03 +1100 | [diff] [blame] | 7 | func getlasterror() uint32 |
| 8 | func setlasterror(err uint32) |
| 9 | |
| 10 | // Function to be called by windows CreateThread |
| 11 | // to start new os thread. |
| 12 | func tstart_stdcall(newm *m) uint32 |
| 13 | |
| 14 | func ctrlhandler(_type uint32) uint32 |
| 15 | |
| 16 | // TODO(brainman): should not need those |
| 17 | const ( |
| 18 | _NSIG = 65 |
| 19 | ) |