Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
go
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
go
Commits
22c41ff0
Commit
22c41ff0
authored
Feb 21, 2012
by
Mikio Hara
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
runtime: remove an obsolete file
R=golang-dev, adg CC=golang-dev
https://golang.org/cl/5686049
parent
10689cdd
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
20 deletions
+12
-20
src/pkg/runtime/cgo/cgo.go
src/pkg/runtime/cgo/cgo.go
+12
-0
src/pkg/runtime/cgo/trigger.go
src/pkg/runtime/cgo/trigger.go
+0
-20
No files found.
src/pkg/runtime/cgo/cgo.go
View file @
22c41ff0
...
@@ -9,6 +9,18 @@ for details on using cgo.
...
@@ -9,6 +9,18 @@ for details on using cgo.
*/
*/
package
cgo
package
cgo
/*
#cgo darwin LDFLAGS: -lpthread
#cgo freebsd LDFLAGS: -lpthread
#cgo linux LDFLAGS: -lpthread
#cgo netbsd LDFLAGS: -lpthread
#cgo openbsd LDFLAGS: -lpthread
#cgo windows LDFLAGS: -lm -mthreads
*/
import
"C"
// Supports _cgo_panic by converting a string constant to an empty
// Supports _cgo_panic by converting a string constant to an empty
// interface.
// interface.
...
...
src/pkg/runtime/cgo/trigger.go
deleted
100644 → 0
View file @
10689cdd
// Copyright 2011 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// This tells the go tool that this package builds using cgo.
// TODO: Once we stop using Make, this import can move into cgo.go.
package
cgo
/*
#cgo darwin LDFLAGS: -lpthread
#cgo freebsd LDFLAGS: -lpthread
#cgo linux LDFLAGS: -lpthread
#cgo netbsd LDFLAGS: -lpthread
#cgo openbsd LDFLAGS: -lpthread
#cgo windows LDFLAGS: -lm -mthreads
*/
import
"C"
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment