Changeset 276 for trunk/hal/x86_64/core/hal_exception.c
- Timestamp:
- Jul 26, 2017, 1:24:51 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/hal/x86_64/core/hal_exception.c
r242 r276 30 30 #include <hal_kentry.h> 31 31 #include <hal_internal.h> 32 #include <hal_segmentation.h> 32 33 33 34 static const char *exc_type[] = { … … 74 75 x86_printf("-> rip = %Z\n", ctx->tf_rip); 75 76 x86_printf("-> rsp = %Z\n", ctx->tf_rsp); 77 x86_printf("-> tls = %Z (gid=%Z)\n", (uint64_t)curcpu(), 78 (uint64_t)hal_get_gid()); 76 79 x86_printf("-> err = %Z\n", ctx->tf_err); 77 80 if (excno == T_PAGEFLT)
Note: See TracChangeset
for help on using the changeset viewer.