You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The lseek call is unnecessary as we know for a fact that we are at the start of the file and thus the result is always 0. It accounts for about 14% of the time when stracing. This is likely inflated due to syscall overhead when using strace, but still it may be a good idea to remove this syscall.
The text was updated successfully, but these errors were encountered:
bjorn3
added
the
I-slow
Issue: Problems and improvements with respect to performance of generated code.
label
Jan 8, 2023
gives the following
strace
output:The
lseek
call is unnecessary as we know for a fact that we are at the start of the file and thus the result is always 0. It accounts for about 14% of the time when stracing. This is likely inflated due to syscall overhead when using strace, but still it may be a good idea to remove this syscall.The text was updated successfully, but these errors were encountered: