Re: Add comment to specify timeout unit in ConditionVariableTimedSleep()

2024-03-11 Thread shveta malik
On Sat, Mar 9, 2024 at 12:19 PM Michael Paquier wrote: > > On Tue, Mar 05, 2024 at 03:20:48PM +0900, Michael Paquier wrote: > > That sounds like a good idea to me, so I'm OK with your suggestion. > > Applied this one as f160bf06f72a. Thanks. Thanks! thanks Shveta

Re: Add comment to specify timeout unit in ConditionVariableTimedSleep()

2024-03-08 Thread Michael Paquier
On Tue, Mar 05, 2024 at 03:20:48PM +0900, Michael Paquier wrote: > That sounds like a good idea to me, so I'm OK with your suggestion. Applied this one as f160bf06f72a. Thanks. -- Michael signature.asc Description: PGP signature

Re: Add comment to specify timeout unit in ConditionVariableTimedSleep()

2024-03-04 Thread Michael Paquier
On Tue, Mar 05, 2024 at 09:39:11AM +0530, shveta malik wrote: > ConditionVariableTimedSleep() accepts a timeout parameter, but it > doesn't explicitly state the unit for the timeout anywhere. To > determine this, one needs to look into the details of the function to > find it out from the comments

Add comment to specify timeout unit in ConditionVariableTimedSleep()

2024-03-04 Thread shveta malik
Hi hackers, ConditionVariableTimedSleep() accepts a timeout parameter, but it doesn't explicitly state the unit for the timeout anywhere. To determine this, one needs to look into the details of the function to find it out from the comments of the internally called function WaitLatch(). It would b