Added the LICENSE file for GPL v3.

This commit is contained in:
Bahadir Balban
2008-11-09 12:22:48 +02:00
parent 513d5aaac8
commit b0291fa075
2 changed files with 690 additions and 1 deletions

View File

@@ -99,7 +99,7 @@ int sys_fork(struct tcb *parent)
return child->tid;
}
int sys_clone(struct tcb *parent, void *child_stack, unsigned int flags)
int do_clone(struct tcb *parent, void *child_stack, unsigned int flags)
{
struct task_ids ids;
struct tcb *child;
@@ -135,5 +135,9 @@ int sys_clone(struct tcb *parent, void *child_stack, unsigned int flags)
}
int sys_clone(struct tcb *parent, void *child_stack, unsigned int flags)
{
}