blob: afed88bd57bd0684a1e129e9b820418d1a68a181 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
PR_USEC_PER_MSEC
================
A convenience macro to improve code readability as well as to avoid
mistakes in counting the number of zeros; represents the number of
microseconds in a millisecond.
Syntax
------
.. code::
#include <prtime.h>
#define PR_USEC_PER_MSEC 1000UL
|