Summary: | Exception in thread "Thread-1" java.lang.ArrayIndexOutOfBoundsException: 24 | ||
---|---|---|---|
Product: | frysk | Reporter: | Andrew Cagney <cagney> |
Component: | general | Assignee: | Unassigned <frysk-bugzilla> |
Status: | ASSIGNED --- | ||
Severity: | normal | CC: | npremji |
Priority: | P2 | ||
Version: | unspecified | ||
Target Milestone: | --- | ||
Host: | Target: | ||
Build: | Last reconfirmed: | ||
Bug Depends on: | |||
Bug Blocks: | 2245 |
Description
Andrew Cagney
2006-10-02 20:35:02 UTC
jrb found this with new option parser requires to run with. ./frysk/bindir/ftrace -- gnome-terminal --disable-factory happens in LinuxIa32Syscall.syscallByNum at this point: else { return ipcSubcallList[subSyscallNumber]; } ipcSubcallList has 24 elements, so the 24 is looking for the 25th element. That 24 is provided by: subSyscallNumber = (int) task.getIsa().getRegisterByName("ebx").get (task); |