Changes in README. Fix to thread_control() reading wrong syscall argument register.

This commit is contained in:
Bahadir Balban
2008-08-27 13:39:16 +03:00
parent 476bac5142
commit 1ca3fce49b
2 changed files with 7 additions and 9 deletions

View File

@@ -195,9 +195,8 @@ out:
int sys_thread_control(syscall_context_t *regs)
{
int ret = 0;
u32 *reg = (u32 *)regs;
unsigned int flags = reg[0];
struct task_ids *ids = (struct task_ids *)reg[1];
unsigned int flags = regs->r0;
struct task_ids *ids = (struct task_ids *)regs->r1;
switch (flags & THREAD_ACTION_MASK) {
case THREAD_CREATE: