runtime: add missing return for non-GNU/Linux version of tgkill

Path from Rainer Orth.
    
    Reviewed-on: https://go-review.googlesource.com/c/153118

From-SVN: r266890
This commit is contained in:
Ian Lance Taylor 2018-12-07 14:22:55 +00:00
parent e914864fab
commit 5a58929be8
2 changed files with 2 additions and 1 deletions

View File

@ -1,4 +1,4 @@
edc7e7172e674b8c7e9c3caa30e24280cd289a9c
f0266d382f8965b7bcaa380aa963498c1884505e
The first line of this file holds the git revision number of the last
merge done from the gofrontend repository.

View File

@ -17,4 +17,5 @@ func gettid() _pid_t {
func tgkill(pid _pid_t, tid _pid_t, sig uint32) uint32 {
throw("tgkill not implemented")
return 0
}