Home | History | Annotate | Download | only in runtime
      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 
      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 )
     20