Hmm, I think it's a sign-extension bug. Can you try replacing

tv.tv_sec = timeout_end - monotonic_sec();

with

tv.tv_sec = (int)(timeout_end - monotonic_sec());

I suspect this will fix the behavior.
_______________________________________________
busybox mailing list
[email protected]
http://lists.busybox.net/mailman/listinfo/busybox

Reply via email to