Package com.zylin.zpu.simulator.exceptions

Examples of com.zylin.zpu.simulator.exceptions.UnsupportedSyscallException


            case Host.SYS_unlink:
                syscall.invokeSyscall("unlink", 1, "s");
                break;
            default:
                simulator.suspend();
                throw new UnsupportedSyscallException();
            }
            simulator.cpuWriteLong(simulator.getArg(0), syscall.syscallErrno);
            simulator.cpuWriteLong(0, syscall.syscallRetval);
        } catch (CPUException e)
        {
View Full Code Here


            retval=-1;
              break;
             
          default:
              simulator.suspend();
              throw new UnsupportedSyscallException();
          }
        }
        catch (IOException e)
        {
            retval=-1;
View Full Code Here

TOP

Related Classes of com.zylin.zpu.simulator.exceptions.UnsupportedSyscallException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.