Changeset 8228
- Timestamp:
- Jan 19, 2008, 4:02:39 PM (17 years ago)
- Location:
- branches/1.1/ccl/lisp-kernel
- Files:
-
- 2 edited
-
pmcl-kernel.c (modified) (1 diff)
-
ppc-gc.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/1.1/ccl/lisp-kernel/pmcl-kernel.c
r8227 r8228 1909 1909 #ifndef WINDOWS 1910 1910 void 1911 sample_paging_info( struct rusage*usage)1912 { 1913 getrusage(RUSAGE_SELF, rusage);1911 sample_paging_info(paging_info *usage) 1912 { 1913 getrusage(RUSAGE_SELF, usage); 1914 1914 } 1915 1915 -
branches/1.1/ccl/lisp-kernel/ppc-gc.c
r7824 r8228 2457 2457 area *a = active_dynamic_area, *to = NULL, *from = NULL, *note = NULL; 2458 2458 unsigned timeidx = 1; 2459 paging_info paging_info_start; 2459 2460 xframe_list *x; 2460 2461 LispObj … … 2511 2512 char buf[16]; 2512 2513 2514 sample_paging_info(&paging_info_start); 2513 2515 comma_output_decimal(buf,16,area_dnode(oldfree,a->low) << dnode_shift); 2514 2516 if (GCephemeral_low) { … … 2826 2828 if (GCverbose) { 2827 2829 char buf[16]; 2830 paging_info paging_info_stop; 2831 2832 sample_paging_info(&paging_info_stop); 2828 2833 if (justfreed <= heap_segment_size) { 2829 2834 justfreed = 0; … … 2837 2842 elapsed.tv_sec, elapsed.tv_usec); 2838 2843 } 2844 report_paging_info_delta(stderr, &paging_info_start, &paging_info_stop); 2839 2845 } 2840 2846 }
Note:
See TracChangeset
for help on using the changeset viewer.
