summaryrefslogtreecommitdiff
path: root/ot_clean.c
diff options
context:
space:
mode:
authorerdgeist <>2008-12-06 18:46:00 +0000
committererdgeist <>2008-12-06 18:46:00 +0000
commit08c71627839a9134367db354c8255f7a720e1ff3 (patch)
treeb429abf6b3c26c7f851b522f5d4fb6797ad02d29 /ot_clean.c
parenta4ed31d517f77a21afe12918a9cb256489daac74 (diff)
Renamed OT_FLAG to OT_PEERFLAG to make code easier to read
Introduced READ16/32 and WRITE16/32 makros to abstract loading/storing from unaligned addresses away on cpu's that can actually load/store everywhere Removed all unnecessary memmoves, especially where it only moved 6 bytes in inner loop. I replaced them with WRITE16/32(READ16/32()) makros
Diffstat (limited to 'ot_clean.c')
-rw-r--r--ot_clean.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ot_clean.c b/ot_clean.c
index 5204be6..2173c27 100644
--- a/ot_clean.c
+++ b/ot_clean.c
@@ -35,7 +35,7 @@ static ssize_t clean_single_bucket( ot_peer *peers, size_t peer_count, time_t ti
35 OT_PEERTIME( peers ) = timediff; 35 OT_PEERTIME( peers ) = timediff;
36 *(uint64_t*)(insert_point++) = *(uint64_t*)(peers++); 36 *(uint64_t*)(insert_point++) = *(uint64_t*)(peers++);
37 } else 37 } else
38 if( OT_FLAG( peers++ ) & PEER_FLAG_SEEDING ) 38 if( OT_PEERFLAG( peers++ ) & PEER_FLAG_SEEDING )
39 (*removed_seeders)++; 39 (*removed_seeders)++;
40 40
41 return peers - insert_point; 41 return peers - insert_point;