Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
G
golang
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
go
golang
Commits
e5437ab0
Commit
e5437ab0
authored
Jul 26, 2011
by
Mikio Hara
Committed by
Russ Cox
Jul 26, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
runtime: fix freebsd build
Fixes #2078. R=rsc CC=golang-dev
https://golang.org/cl/4800052
parent
55dfdb64
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
0 deletions
+4
-0
signal.c
src/pkg/runtime/freebsd/386/signal.c
+2
-0
signal.c
src/pkg/runtime/freebsd/amd64/signal.c
+2
-0
No files found.
src/pkg/runtime/freebsd/386/signal.c
View file @
e5437ab0
...
...
@@ -111,6 +111,8 @@ runtime·sighandler(int32 sig, Siginfo *info, void *context, G *gp)
runtime
·
exit
(
2
);
}
// Called from kernel on signal stack, so no stack split.
#pragma textflag 7
void
runtime
·
sigignore
(
void
)
{
...
...
src/pkg/runtime/freebsd/amd64/signal.c
View file @
e5437ab0
...
...
@@ -119,6 +119,8 @@ runtime·sighandler(int32 sig, Siginfo *info, void *context, G *gp)
runtime
·
exit
(
2
);
}
// Called from kernel on signal stack, so no stack split.
#pragma textflag 7
void
runtime
·
sigignore
(
void
)
{
...
...
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