search for: full_record_length

Displaying 1 result from an estimated 1 matches for "full_record_length".

2009 Nov 07
1
Fwd: [PATCH (geoip)] use IO.pread from the io-extra lib if possible
...@ class GeoIP private def read_city(pos, hostname = '''', ip = '''') - record = "" - @mutex.synchronize { - @file.seek(pos + (2*@record_length-1) * @databaseSegments[0]) - return nil unless record = @file.read(FULL_RECORD_LENGTH) - } + off = pos + (2*@record_length-1) * @databaseSegments[0] + record = atomic_read(FULL_RECORD_LENGTH, off) + return nil unless record && record.size == FULL_RECORD_LENGTH # The country code is the first byte: code = record[0] @@ -655,11 +6...