Class ThreadStateX86_32

    • Field Detail

      • eax

        public int eax
      • ebx

        public int ebx
      • ecx

        public int ecx
      • edx

        public int edx
      • edi

        public int edi
      • esi

        public int esi
      • ebp

        public int ebp
      • esp

        public int esp
      • ss

        public int ss
      • eflags

        public int eflags
      • eip

        public int eip
      • cs

        public int cs
      • ds

        public int ds
      • es

        public int es
      • fs

        public int fs
      • gs

        public int gs
      • i386_THREAD_STATE

        @Deprecated
        public static final int i386_THREAD_STATE
        Deprecated.
        See Also:
        Constant Field Values
      • i386_FLOAT_STATE

        @Deprecated
        public static final int i386_FLOAT_STATE
        Deprecated.
        See Also:
        Constant Field Values
      • i386_EXCEPTION_STATE

        @Deprecated
        public static final int i386_EXCEPTION_STATE
        Deprecated.
        See Also:
        Constant Field Values
    • Constructor Detail

      • ThreadStateX86_32

        public ThreadStateX86_32()
        DO NOT USE THIS CONSTRUCTOR, USE create*(GenericFactory ...) FACTORY METHODS INSTEAD.
    • Method Detail

      • toDataType

        public DataType toDataType()
                            throws DuplicateNameException,
                                   java.io.IOException
        Description copied from interface: StructConverter
        Returns a structure datatype representing the contents of the implementor of this interface.

        For example, given:

         class A {
             int foo;
             double bar;
         }
         

        The return value should be a structure data type with two data type components; an INT and a DOUBLE. The structure should contain field names and, if possible, field comments.

        Returns:
        returns a structure datatype representing the implementor of this interface
        Throws:
        DuplicateNameException - when a datatype of the same name already exists
        java.io.IOException
        See Also:
        StructureDataType