Commit 3c831f63 authored by Russ Cox's avatar Russ Cox

cmd/fix: add runtime renamings

R=golang-dev, dsymonds, r
CC=golang-dev
https://golang.org/cl/5685043
parent fa9c44d8
...@@ -56,4 +56,16 @@ var go1renameReplace = []rename{ ...@@ -56,4 +56,16 @@ var go1renameReplace = []rename{
Old: "os.Exec", Old: "os.Exec",
New: "syscall.Exec", New: "syscall.Exec",
}, },
{
OldImport: "runtime",
NewImport: "",
Old: "runtime.Cgocalls",
New: "runtime.NumCgoCall",
},
{
OldImport: "runtime",
NewImport: "",
Old: "runtime.Goroutines",
New: "runtime.NumGoroutine",
},
} }
...@@ -18,6 +18,7 @@ import ( ...@@ -18,6 +18,7 @@ import (
"crypto/des" "crypto/des"
"net/url" "net/url"
"os" "os"
"runtime"
) )
var ( var (
...@@ -29,6 +30,8 @@ var ( ...@@ -29,6 +30,8 @@ var (
_ = url.ParseWithReference _ = url.ParseWithReference
_ = url.ParseRequest _ = url.ParseRequest
_ = os.Exec _ = os.Exec
_ = runtime.Cgocalls
_ = runtime.Goroutines
) )
`, `,
Out: `package main Out: `package main
...@@ -37,6 +40,7 @@ import ( ...@@ -37,6 +40,7 @@ import (
"crypto/aes" "crypto/aes"
"crypto/cipher" "crypto/cipher"
"net/url" "net/url"
"runtime"
"syscall" "syscall"
) )
...@@ -49,6 +53,8 @@ var ( ...@@ -49,6 +53,8 @@ var (
_ = url.Parse _ = url.Parse
_ = url.ParseRequestURI _ = url.ParseRequestURI
_ = syscall.Exec _ = syscall.Exec
_ = runtime.NumCgoCall
_ = runtime.NumGoroutine
) )
`, `,
}, },
......
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