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