X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;f=lib%2Fsorter.h;h=eebd2206dfdee76c2d1ee10f84d3036f826cf954;hb=35257848f97710b8107e20f690404cfaf0838f74;hp=11daf95a0c933d53fb2699dc15e20f52e7e85466;hpb=e30a6049a172b94b9e54d502f7b8d96746cd2187;p=libucw.git diff --git a/lib/sorter.h b/lib/sorter.h index 11daf95a..eebd2206 100644 --- a/lib/sorter.h +++ b/lib/sorter.h @@ -230,7 +230,7 @@ P(pass)(struct fastbuf **fb1, struct fastbuf **fb2 bclose(in1); bclose(in2); if (sorter_trace) - log(L_INFO, "Pass %d: %d runs, %d+%d KB", sorter_pass_counter, run_count, + msg(L_INFO, "Pass %d: %d runs, %d+%d KB", sorter_pass_counter, run_count, (out1 ? (int)((btell(out1) + 1023) / 1024) : 0), (out2 ? (int)((btell(out2) + 1023) / 1024) : 0)); *fb1 = P(flush_out)(out1); @@ -300,7 +300,7 @@ P(presort)(struct fastbuf **fb1, struct fastbuf **fb2) bclose(in); if (sorter_trace) - log(L_INFO, "Pass 0: %d runs, %d+%d KB", + msg(L_INFO, "Pass 0: %d runs, %d+%d KB", run_count, (out1 ? (int)((btell(out1) + 1023) / 1024) : 0), (out2 ? (int)((btell(out2) + 1023) / 1024) : 0)); @@ -401,7 +401,7 @@ P(presort)(struct fastbuf **fb1, struct fastbuf **fb2) } for(;;) { - current = (byte *) ALIGN((addr_int_t) current, CPU_STRUCT_ALIGN); + current = (byte *) ALIGN_TO((uintptr_t) current, CPU_STRUCT_ALIGN); if (current + sizeof(*this) > bufend) break; this = (SORT_NODE *) current; @@ -459,7 +459,7 @@ P(presort)(struct fastbuf **fb1, struct fastbuf **fb2) bclose(in); if (sorter_trace) - log(L_INFO, "Pass 0: %d runs (%d giants, %d splits), %d+%d KB", + msg(L_INFO, "Pass 0: %d runs (%d giants, %d splits), %d+%d KB", run_count, giant_count, split_count, (out1 ? (int)((btell(out1) + 1023) / 1024) : 0), (out2 ? (int)((btell(out2) + 1023) / 1024) : 0));