Changeset 4be51c8 in mainline for arch/ia32/src/interrupt.c


Ignore:
Timestamp:
2006-01-15T17:38:16Z (19 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
fd537a0
Parents:
204674e
Message:

syscall handler return value
uspace task termination (primitive)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • arch/ia32/src/interrupt.c

    r204674e r4be51c8  
    117117       
    118118        if (stack[-2] < SYSCALL_END)
    119                 syscall_table[stack[-2]](stack[-5], stack[-3], stack[-4]);
     119                stack[-2] = syscall_table[stack[-2]](stack[-5], stack[-3], stack[-4]);
    120120        else
    121121                panic("Undefined syscall %d", stack[-2]);
Note: See TracChangeset for help on using the changeset viewer.