183
190
/* Setup the end time, which is in nano-seconds. */
184
191
abstime.tv_sec = (long) (micro_sec / 1000000); /* seconds */
185
192
abstime.tv_nsec = (long) ((micro_sec % 1000000) * 1000); /* and nanoseconds */
187
194
ASSERT(iLockingThread == self);