summaryrefslogtreecommitdiffstats
path: root/usr.sbin/xntpd/include/sys/clkdefs.h
blob: b2596e1105143fc2c8f3c96181e613f1e4523ea9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/* clkdefs.h,v 3.1 1993/07/06 01:07:12 jbj Exp
 * Defines for the "clk" timestamping STREAMS module
 */

#include <sys/ioccom.h>

/*
 * First, we need to define the maximum size of the set of
 * characters to timestamp. 32 is MORE than enough.
 */

#define CLK_MAXSTRSIZE 32

/*
 * ioctl(fd, CLK_SETSTR, (char*)c );
 *
 * will tell the driver that any char in the null-terminated
 * string c should be timestamped. It is possible, though
 * unlikely that this ioctl number could collide with an
 * existing one on your system. If so, change the 'K'
 * to some other letter. However, once you've compiled
 * the kernel with this include file, you should NOT
 * change this file.
 */

#if __STDC__
#define CLK_SETSTR _IOWN('K',01,CLK_MAXSTRSIZE)
#else
#define CLK_SETSTR _IOWN(K,01,CLK_MAXSTRSIZE)
#endif

OpenPOWER on IntegriCloud