• mudos源码分析


    错误捕捉相关的代码在simulate.c

    void throw_error()
    {
        if (((current_error_context->save_csp + 1)->framekind & FRAME_MASK) == FRAME_CATCH) {
            LONGJMP(current_error_context->context, 1);
            fatal("Throw_error failed!");
        }
        error("Throw with no catch.
    ");
    }
    
    static void debug_message_with_location P1(char *, err) {
        if (current_object && current_prog) {
                debug_message("%sprogram: /%s, object: /%s, file: %s
    ",
                  err,
                  current_prog->name,
                  current_object->name,
                  get_line_number(pc, current_prog));
        } else if (current_object) {
                debug_message("%sprogram: (none), object: /%s, file: (none)
    ",
                  err,
                  current_object->name);
        } else {
                debug_message("%sprogram: (none), object: (none), file: (none)
    ",
                  err);
        }
    }
    void fatal P1V(char *, fmt)
    {
        static int in_fatal = 0;
        char msg_buf[2049];
        va_list args;
        V_DCL(char *fmt);
    
        if (in_fatal) {
            debug_message("Fatal error while shutting down.  Aborting.
    ");
        } else {
            in_fatal = 1;
            V_START(args, fmt);
            V_VAR(char *, fmt, args);
            vsprintf(msg_buf, fmt, args);
            va_end(args);
            debug_message("******** FATAL ERROR: %s
    MudOS driver attempting to exit gracefully.
    ", msg_buf);
            if (current_file)
                debug_message("(occured during compilation of %s at line %d)
    ", current_file, current_line);
            if (current_object)
                debug_message("(current object was /%s)
    ", current_object->name);
            
            dump_trace(1);
            
    #ifdef PACKAGE_MUDLIB_STATS
            save_stat_files();
    #endif
            copy_and_push_string(msg_buf);
            if (command_giver) {
                push_object(command_giver);
            } else {
                push_undefined();
            }
            if (current_object) {
                push_object(current_object);
            } else {
                push_undefined();
            }
            apply_master_ob(APPLY_CRASH, 3);
            debug_message("crash() in master called successfully.  Aborting.
    ");
        }
        /* Make sure we don't trap our abort() */
    #ifdef SIGABRT
        signal(SIGABRT, SIG_DFL);
    #endif
    #ifdef SIGILL
        signal(SIGILL, SIG_DFL);
    #endif
    #ifdef SIGIOT
        signal(SIGIOT, SIG_DFL);
    #endif
        
    #if !defined(DEBUG_NON_FATAL) || !defined(MDEBUG)
    #ifdef WIN32
        exit(0);
    #endif
        abort();
    #endif
        in_fatal = 0;
    }
  • 相关阅读:
    使用NDK开发SQLite3
    SQL Server 2005 Default Trace (默认跟踪)
    MySQL 获得当前日期时间 函数
    利用UltraISO写入U盘安装系统,条件:电脑支持USBHDD ,U盘容量足够
    Sicily 1157 The hardest problem
    Histogram of oriented gradients(HOG)
    IE中的CSS3不完全兼容方案
    MySQL如何查询两个日期之间的记录
    查找某个字段最大值的记录 SQL 语句
    用 jQuery 实现页面滚动(Scroll)效果的完美方法
  • 原文地址:https://www.cnblogs.com/cfas/p/7901905.html
Copyright © 2020-2023  润新知