/*
* "flags" argument to prf().
+ * NB: Used in integer flags field, private to bsd/kern/subr_prf.c
*/
-#define TOCONS 0x01
-#define TOTTY 0x02
-#define TOLOG 0x04
-#define TOSTR 0x8
+#define TOCONS 0x00000001 /* output to console */
+#define TOTTY 0x00000002 /* output to tty */
+#define TOLOG 0x00000004 /* output to log (log lock not held) */
+#define TOSTR 0x00000008 /* output to string */
+#define TOLOGLOCKED 0x00000010 /* output to log (log lock held) */
extern int prf(const char *fmt, va_list ap, int flags, struct tty *ttyp);