Changeset 06e1e95 in mainline for kernel/arch/ia64/src/interrupt.c


Ignore:
Timestamp:
2006-09-14T17:09:21Z (18 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
f1d1f5d3
Parents:
e5ecc02
Message:

C99 compliant header guards (hopefully) everywhere in the kernel.
Formatting and indentation changes.
Small improvements in sparc64.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/ia64/src/interrupt.c

    re5ecc02 r06e1e95  
    217217        }
    218218
    219         if (istate->in4 < SYSCALL_END)
    220                 return syscall_table[istate->in4](istate->in0, istate->in1, istate->in2, istate->in3);
    221         else
    222                 panic("Undefined syscall %d", istate->in4);
    223                
    224         return -1;
     219        return syscall_handler(istate->in0, istate->in1, istate->in2, istate->in3, istate->in4);
    225220}
    226221
Note: See TracChangeset for help on using the changeset viewer.