shithub: npe

Download patch

ref: fde88f040b42fef86ce3e7362ca0bf5faa14a48b
parent: 167ec7c08ffa7b4a5140c9bc1f1f276abeda56e0
author: Sigrid Solveig Haflínudóttir <ftrvxmtrx@gmail.com>
date: Thu Apr 22 13:50:45 EDT 2021

npe: fix sleep function not being sleepy enough

--- a/libnpe/_npe.c
+++ b/libnpe/_npe.c
@@ -60,7 +60,7 @@
 			sleep(70);
 		else if (end - ns > 25000000ULL)
 			sleep(20);
-		else if (end - ns > 10000000ULL)
+		else if (end - ns > 1000000ULL)
 			sleep(1);
 		else
 			break;