syscall: mark rawClone as no_split_stack

Reviewed-on: https://go-review.googlesource.com/30955

From-SVN: r241072
This commit is contained in:
Ian Lance Taylor 2016-10-12 17:42:49 +00:00
parent 323c57220b
commit fa8e596366
2 changed files with 5 additions and 2 deletions

View file

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

View file

@ -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)