Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 235199
b: refs/heads/master
c: 4302e52
h: refs/heads/master
i:
  235197: 89172a6
  235195: 326337e
  235191: 51380d1
  235183: bab3ec9
  235167: 657735c
  235135: 3b2a09b
v: v3
  • Loading branch information
Michal Simek committed Mar 9, 2011
1 parent 498389a commit 4d7570a
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 954e8b9599d64a959fe81cfaa8b0e0ee6387271c
refs/heads/master: 4302e5254a8a9e726db444763be1e95e063406fb
8 changes: 8 additions & 0 deletions trunk/arch/microblaze/include/asm/syscalls.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
#ifndef __ASM_MICROBLAZE_SYSCALLS_H

asmlinkage long microblaze_vfork(struct pt_regs *regs);
asmlinkage long microblaze_clone(int flags, unsigned long stack,
struct pt_regs *regs);
asmlinkage long microblaze_execve(const char __user *filenamei,
const char __user *const __user *argv,
const char __user *const __user *envp,
struct pt_regs *regs);

asmlinkage long sys_clone(int flags, unsigned long stack, struct pt_regs *regs);
#define sys_clone sys_clone

Expand Down
3 changes: 2 additions & 1 deletion trunk/arch/microblaze/kernel/sys_microblaze.c
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@ asmlinkage long microblaze_vfork(struct pt_regs *regs)
regs, 0, NULL, NULL);
}

asmlinkage long microblaze_clone(int flags, unsigned long stack, struct pt_regs *regs)
asmlinkage long microblaze_clone(int flags, unsigned long stack,
struct pt_regs *regs)
{
if (!stack)
stack = regs->r1;
Expand Down

0 comments on commit 4d7570a

Please sign in to comment.