mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-10 10:41:50 +00:00
Use memchr() to find newline in memory block.
This commit is contained in:
parent
48062573b8
commit
4d4b6c7ac9
@ -1102,19 +1102,16 @@ static void ProcessTraceLines( int fd )
|
||||
line = buf;
|
||||
for(;;)
|
||||
{
|
||||
auto next = line;
|
||||
while( next < end && *next != '\n' ) next++;
|
||||
next++;
|
||||
if( next >= end )
|
||||
auto next = (char*)memchr( line, '\n', end - line );
|
||||
if( !next )
|
||||
{
|
||||
const auto lsz = end - line;
|
||||
memmove( buf, line, lsz );
|
||||
line = buf + lsz;
|
||||
break;
|
||||
}
|
||||
|
||||
HandleTraceLine( line );
|
||||
line = next;
|
||||
line = ++next;
|
||||
}
|
||||
if( rd < 64*1024 )
|
||||
{
|
||||
@ -1189,14 +1186,10 @@ static void ProcessTraceLines( int fd )
|
||||
const auto end = buf + rd;
|
||||
for(;;)
|
||||
{
|
||||
auto next = line;
|
||||
while( next < end && *next != '\n' ) next++;
|
||||
if( next == end ) break;
|
||||
assert( *next == '\n' );
|
||||
next++;
|
||||
|
||||
auto next = (char*)memchr( line, '\n', end - line );
|
||||
if( !next ) break;
|
||||
HandleTraceLine( line );
|
||||
line = next;
|
||||
line = ++next;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user