#define X86_EXC_TS 10 /* Invalid TSS. */
#define X86_EXC_NP 11 /* Segment Not Present. */
#define X86_EXC_SS 12 /* Stack-Segment Fault. */
-#define X86_EXC_GP 13 /* General Porection Fault. */
+#define X86_EXC_GP 13 /* General Protection Fault. */
#define X86_EXC_PF 14 /* Page Fault. */
#define X86_EXC_SPV 15 /* PIC Spurious Interrupt Vector. */
#define X86_EXC_MF 16 /* Maths fault (x87 FPU). */
/*
- * Xen public hvm paramter index
+ * Xen public hvm parameter index
*/
#ifndef XEN_PUBLIC_HVM_PARAMS_H
typedef void (*cons_output_cb)(const char *buf, size_t len);
/*
- * Register a console callback. Several callbacks can be registered for usful
+ * Register a console callback. Several callbacks can be registered for useful
* destinations of console text.
*/
void register_console_callback(cons_output_cb cb);
* Exception table support.
*
* Allows code to tag an instruction which might fault, and where to jump to
- * in order to recover. For more complicated recovery, a cusom handler
- * handler can be registerd.
+ * in order to recover. For more complicated recovery, a custom handler
+ * can be registered.
*/
#ifndef XTF_EXTABLE_H
#define XTF_EXTABLE_H