From: Oliver Kurth Date: Fri, 15 Sep 2017 18:23:47 +0000 (-0700) Subject: Improve a comment X-Git-Tag: stable-10.2.0~131 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=774bfbf5d5752b22947dd975b14734c30aec6379;p=thirdparty%2Fopen-vm-tools.git Improve a comment --- diff --git a/open-vm-tools/lib/file/fileLockPrimitive.c b/open-vm-tools/lib/file/fileLockPrimitive.c index 7a5e52f8a..f1a3b5212 100644 --- a/open-vm-tools/lib/file/fileLockPrimitive.c +++ b/open-vm-tools/lib/file/fileLockPrimitive.c @@ -141,7 +141,8 @@ FileLockSleeper(LockValues *myValues) // IN/OUT: maxSleepTimeMsec = 100; } else { /* - * The lock has been around a while, linear back off with an upper bound. + * The lock has been around a while; use a continuously increasing back + * off with an upper bound. */ maxSleepTimeMsec = MIN(ageMsec / 10, 2000);