На главную

On-line справка по Win32 API

Написать письмо
БЕСПЛАТНАЯ ежедневная online лотерея! Выигрывай каждый день БЕСПЛАТНО!
Список всех статей A-B-C-D-E-F-G-H-I-J-K-L-M-N-O-P-Q-R-S-T-U-V-W-X-Y-Z | Скачать Вниз

EXCEPTION_RECORD



The EXCEPTION_RECORD structure describes an exception.

typedef struct _EXCEPTION_RECORD { // exr
DWORD ExceptionCode;
DWORD ExceptionFlags;
struct _EXCEPTION_RECORD *ExceptionRecord;
PVOID ExceptionAddress;
DWORD NumberParameters;
DWORD ExceptionInformation[EXCEPTION_MAXIMUM_PARAMETERS];
} EXCEPTION_RECORD;


Members

ExceptionCode

Specifies the reason the exception occurred. This is the code generated by a hardware exception, or the code specified in the RaiseException function for a software-generated exception. Following are the exception codes likely to occur due to common programming errors:

Value Meaning
EXCEPTION_ACCESS_VIOLATION
The thread tried to read from or write to a virtual address for which it does not have the appropriate access.
EXCEPTION_ARRAY_BOUNDS_EXCEEDED
The thread tried to access an array element that is out of bounds and the underlying hardware supports bounds checking.
EXCEPTION_BREAKPOINT
A breakpoint was encountered.
EXCEPTION_DATATYPE_MISALIGNMENT
The thread tried to read or write data that is misaligned on hardware that does not provide alignment. For example, 16-bit values must be aligned on 2-byte boundaries; 32-bit values on 4-byte boundaries, and so on.
EXCEPTION_FLT_DENORMAL_OPERAND
One of the operands in a floating-point operation is denormal. A denormal value is one that is too small to represent as a standard floating-point value.
EXCEPTION_FLT_DIVIDE_BY_ZERO
The thread tried to divide a floating-point value by a floating-point divisor of zero.
EXCEPTION_FLT_INEXACT_RESULT
The result of a floating-point operation cannot be represented exactly as a decimal fraction.
EXCEPTION_FLT_INVALID_OPERATION
This exception represents any floating-point exception not included in this list.
EXCEPTION_FLT_OVERFLOW
The exponent of a floating-point operation is greater than the magnitude allowed by the corresponding type.
EXCEPTION_FLT_STACK_CHECK
The stack overflowed or underflowed as the result of a floating-point operation.
EXCEPTION_FLT_UNDERFLOW
The exponent of a floating-point operation is less than the magnitude allowed by the corresponding type.
EXCEPTION_ILLEGAL_INSTRUCTION
The thread tried to execute an invalid instruction.
EXCEPTION_IN_PAGE_ERROR
The thread tried to access a page that was not present, and the system was unable to load the page. For example, this exception might occur if a network connection is lost while running a program over the network.
EXCEPTION_INT_DIVIDE_BY_ZERO
The thread tried to divide an integer value by an integer divisor of zero.
EXCEPTION_INT_OVERFLOW
The result of an integer operation caused a carry out of the most significant bit of the result.
EXCEPTION_INVALID_DISPOSITION
An exception handler returned an invalid disposition to the exception dispatcher. Programmers using a high-level language such as C should never encounter this exception.
EXCEPTION_NONCONTINUABLE_EXCEPTION
The thread tried to continue execution after a noncontinuable exception occurred.
EXCEPTION_PRIV_INSTRUCTION
The thread tried to execute an instruction whose operation is not allowed in the current machine mode.
EXCEPTION_SINGLE_STEP
A trace trap or other single-instruction mechanism signaled that one instruction has been executed.
EXCEPTION_STACK_OVERFLOW
The thread used up its stack.


Another exception code is likely to occur when debugging console processes. It does not arise because of a programming error. The DBG_CONTROL_C exception code occurs when CTRL+C is input to a console process that handles CTRL+C signals and is being debugged. This exception code is not meant to be handled by applications. It is raised only for the benefit of the debugger, and is raised only when a debugger is attached to the console process.

ExceptionFlags

Specifies the exception flags. This member can be either zero, indicating a continuable exception, or EXCEPTION_NONCONTINUABLE indicating a noncontinuable exception. Any attempt to continue execution after a noncontinuable exception causes the EXCEPTION_NONCONTINUABLE_EXCEPTION exception.

ExceptionRecord

Points to an associated EXCEPTION_RECORD structure. Exception records can be chained together to provide additional information when nested exceptions occur.

ExceptionAddress

Specifies the address where the exception occurred.

NumberParameters

Specifies the number of parameters associated with the exception. This is the number of defined elements in the ExceptionInformation array.

ExceptionInformation

Specifies an array of additional 32-bit arguments that describe the exception. The RaiseException function can specify this array of arguments. For most exception codes, the array elements are undefined. For the following exception code, the array elements are defined as follows:

Exception code Array contents
EXCEPTION_ACCESS_VIOLATION
The first element of the array contains a read-write flag that indicates the type of operation that caused the access violation. If this value is zero, the thread attempted to read the inaccessible data. If this value is 1, the thread attempted to write to an inaccessible address.
The second array element specifies the virtual address of the inaccessible data.


See Also

EXCEPTION_DEBUG_INFO, EXCEPTION_POINTERS, GetExceptionInformation, RaiseException, UnhandledExceptionFilter


Пригласи друзей и счет твоего мобильника всегда будет положительным!
Предыдущая статья
 
Сайт Народ.Ру Интернет
Следующая статья
Пригласи друзей и счет твоего мобильника всегда будет положительным!

EXCEPTION_RECORD



Структура EXCEPTION_RECORD описывает исключение.

typedef struct _EXCEPTION_RECORD { // exr DWORD ExceptionCode;
DWORD ExceptionFlags;
struct _EXCEPTION_RECORD *ExceptionRecord;
PVOID ExceptionAddress;
DWORD NumberParameters;
DWORD ExceptionInformation[EXCEPTION_MAXIMUM_PARAMETERS];
} EXCEPTION_RECORD;


Участники

ExceptionCode

Определяет причине произойденное исключение. Это - код сгенерированный аппаратным исключением, или код определялся в функции RaiseException для сгенерированного программного исключения. Следующее является исключительными кодами вероятно, чтобы происходить из-за общего программирования ошибок:

Оцените Значение EXCEPTION_ACCESS_VIOLATION
Резьба попытавшаяся, чтобы читаться из или записываться в виртуальный адрес для которого у него нет подходящего доступа.
EXCEPTION_ARRAY_BOUNDS_EXCEEDED
Резьба попытавшаяся, чтобы иметь доступ к элементу массива, который - из границ и используемое оборудование поддерживает проверку границ.
EXCEPTION_BREAKPOINT точечный разрыв столкнулся.
EXCEPTION_DATATYPE_MISALIGNMENT
Резьба попытавшаяся, чтобы читать или записывать данные, которые misaligned в аппаратные средства, что не обеспечивает выравнивание. Например, 16- битовые величины должны быть выровнены на 2- байтовых границах; 32- битовые величины на 4- байтовых границах, и так далее.
EXCEPTION_FLT_DENORMAL_OPERAND
Один из операндов на операции плавающей точки - denormal. Величина denormal - та которая слишком небольшая, чтобы представлять как плавающая точка стандартной величины.
EXCEPTION_FLT_DIVIDE_BY_ZERO
Резьба попытавшаяся, чтобы делить плавающую точку величины плавающей точкой делителя нуля.
EXCEPTION_FLT_INEXACT_RESULT
Результат операции плавающей точки не может представляться точно как десятичная дробь.
EXCEPTION_FLT_INVALID_OPERATION
Это исключение представляет любую плавающую точку исключения не включенное в этот список.
EXCEPTION_FLT_OVERFLOW
Показатель операции плавающей точки больше, чем величина допускала соответствующим типом.
EXCEPTION_FLT_STACK_CHECK
Стек overflowed или underflowed как результат операции плавающей точки.
EXCEPTION_FLT_UNDERFLOW
Показатель операции плавающей точки - менее чем величина допущенная соответствующим типом.
EXCEPTION_ILLEGAL_INSTRUCTION резьба попытавшаяся, чтобы выполнять неправильную инструкцию.
EXCEPTION_IN_PAGE_ERROR
Резьба попытавшаяся, чтобы иметь доступ к странице, которая не присутствовала, и система была не в состоянии загрузить страницу. Например, это исключение могло произойти если сетевая связь потерена при прогоне программы над сетью.
EXCEPTION_INT_DIVIDE_BY_ZERO
Резьба попытавшаяся, чтобы делить величину целого делителем целого нуля.
EXCEPTION_INT_OVERFLOW
Результат операции целого вызывал выполнять наиболее значимого бита результата.
EXCEPTION_INVALID_DISPOSITION
Исключительный вручитель возвращал неправильное расположение исключительному диспетчеру. Программисты, использовавшие высокоуровневый язык как например, C не должен никогда столкнуться с этим исключением.
EXCEPTION_NONCONTINUABLE_EXCEPTION
Резьба попытавшаяся, чтобы продолжать выполнение после того, как noncontinuable исключение произошло.
EXCEPTION_PRIV_INSTRUCTION
Резьба попытавшаяся, чтобы выполнять инструкцию, чья операция не допущена в текущий машинный режим.
EXCEPTION_SINGLE_STEP
Прерывание следа или другой единственной инструкции механизма сигнализировали, что одна инструкция выполнена.
EXCEPTION_STACK_OVERFLOW резьба расходовала стек.


Другой исключительный код вероятно произойдет при отладке консольных процессов. Это не возникает из-за программирующей ошибки. Исключительный код DBG_CONTROL_C происходит когда CTRL+C - ввод в консольном процессе, который оперирует CTRL+C сигнализирует и отлаживается. Этот исключительный код не захотеть быть прооперированн приложениями. Поднято только в пользу отладчика и поднимается только когда отладчик приложен к консольному процессу.

ExceptionFlags

Определяет исключительные флаги. Этот элемент может быть любым нулем, указывающим continuable исключение, или EXCEPTION_NONCONTINUABLE, указывающее noncontinuable исключение. Любая попытка, чтобы продолжать выполнение после того, как noncontinuable исключение вызовет исключение EXCEPTION_NONCONTINUABLE_EXCEPTION.

ExceptionRecord

Точки на связанную структуру EXCEPTION_RECORD. Исключительные записи могут подключаться вместе, чтобы обеспечивать дополнительную информацию когда вложенные исключения происходят.

ExceptionAddress

Определяет адрес где исключение происходило.

NumberParameters

Определяет количество параметров связанных исключением. Это - количество определенных элементов в массиве ExceptionInformation.

ExceptionInformation

Определяет массив дополнительных 32- битовых аргументов, которые описывают исключение. Функция RaiseException может определить этот массив аргументов. Для большинства исключительных кодов, элементы массива неопределенные. Для следующего исключительного кода, элементы массива определяются следующим образом:

Исключительное кодовое содержание Массива EXCEPTION_ACCESS_VIOLATION
Первый элемент массива содержит читать-записывать флаг, который указывает тип операции, которая вызывала нарушение доступа. Если эта величина - нуль, резьба попытавшиеся, чтобы читать недоступные данные. Если эта величина - 1, резьба попытавшиеся, чтобы записываться в недоступный адрес.
Второй элемент массива определяет виртуальный адрес недоступных данных.


Смотри Также

EXCEPTION_DEBUG_INFO, EXCEPTION_POINTERS, GetExceptionInformation, RaiseException, UnhandledExceptionFilter


Вверх Version 1.3, Oct 26 2010 © 2007, 2010, mrhx Вверх
 mrhx software  Русский перевод OpenGL  Русский перевод Win32 API
 
Используются технологии uCoz