Add a MIN macro.
This commit is contained in:
parent
0817ade904
commit
716831f5f4
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=5452
@ -73,6 +73,8 @@
|
||||
#define lprintf (void)
|
||||
#endif
|
||||
|
||||
#define MIN(a, b) (((a) < (b)) ? (a) : (b))
|
||||
|
||||
#define TIMEOUT (hz*15) /* timeout while reading a buffer - default value */
|
||||
#define LONG (hz/60) /* timesteps while reading a buffer */
|
||||
#define GSCPRI PRIBIO /* priority while reading a buffer */
|
||||
|
Loading…
Reference in New Issue
Block a user