Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
fa8e5963
Commit
fa8e5963
authored
Oct 12, 2016
by
Ian Lance Taylor
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
syscall: mark rawClone as no_split_stack
Reviewed-on:
https://go-review.googlesource.com/30955
From-SVN: r241072
parent
323c5722
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
2 deletions
+5
-2
gcc/go/gofrontend/MERGE
+1
-1
libgo/go/syscall/clone_linux.c
+4
-1
No files found.
gcc/go/gofrontend/MERGE
View file @
fa8e5963
7e4543d050339e113e6278fd442d940c0f1a567
0
c18d9f0e7270144ebd1f67d85995f434bbdab0b
0
The first line of this file holds the git revision number of the last
merge done from the gofrontend repository.
libgo/go/syscall/clone_linux.c
View file @
fa8e5963
...
...
@@ -10,7 +10,10 @@
#include "runtime.h"
long
rawClone
(
unsigned
long
flags
,
void
*
child_stack
,
void
*
ptid
,
void
*
ctid
,
struct
pt_regs
*
regs
)
__asm__
(
GOSYM_PREFIX
"syscall.rawClone"
);
long
rawClone
(
unsigned
long
flags
,
void
*
child_stack
,
void
*
ptid
,
void
*
ctid
,
struct
pt_regs
*
regs
)
__asm__
(
GOSYM_PREFIX
"syscall.rawClone"
)
__attribute__
((
no_split_stack
));
long
rawClone
(
unsigned
long
flags
,
void
*
child_stack
,
void
*
ptid
,
void
*
ctid
,
struct
pt_regs
*
regs
)
...
...
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