Revision 3d177870 linux-user/main.c

b/linux-user/main.c
1958 1958
    if (loglevel) {
1959 1959
        page_dump(logfile);
1960 1960

  
1961
        fprintf(logfile, "start_brk   0x%08lx\n" , info->start_brk);
1962
        fprintf(logfile, "end_code    0x%08lx\n" , info->end_code);
1963
        fprintf(logfile, "start_code  0x%08lx\n" , info->start_code);
1964
        fprintf(logfile, "start_data  0x%08lx\n" , info->start_data);
1965
        fprintf(logfile, "end_data    0x%08lx\n" , info->end_data);
1966
        fprintf(logfile, "start_stack 0x%08lx\n" , info->start_stack);
1967
        fprintf(logfile, "brk         0x%08lx\n" , info->brk);
1968
        fprintf(logfile, "entry       0x%08lx\n" , info->entry);
1961
        fprintf(logfile, "start_brk   0x" TARGET_FMT_lx "\n", info->start_brk);
1962
        fprintf(logfile, "end_code    0x" TARGET_FMT_lx "\n", info->end_code);
1963
        fprintf(logfile, "start_code  0x" TARGET_FMT_lx "\n",
1964
                info->start_code);
1965
        fprintf(logfile, "start_data  0x" TARGET_FMT_lx "\n",
1966
                info->start_data);
1967
        fprintf(logfile, "end_data    0x" TARGET_FMT_lx "\n", info->end_data);
1968
        fprintf(logfile, "start_stack 0x" TARGET_FMT_lx "\n",
1969
                info->start_stack);
1970
        fprintf(logfile, "brk         0x" TARGET_FMT_lx "\n", info->brk);
1971
        fprintf(logfile, "entry       0x" TARGET_FMT_lx "\n", info->entry);
1969 1972
    }
1970 1973

  
1971 1974
    target_set_brk(info->brk);

Also available in: Unified diff