Add a vtprintf. It is to tprintf what vprintf is to printf.
Reviewed by: kib
This commit is contained in:
parent
d6d3e03e1e
commit
34c916c6d2
@ -175,15 +175,24 @@ out:
|
|||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* tprintf prints on the controlling terminal associated with the given
|
* tprintf and vtprintf print on the controlling terminal associated with the
|
||||||
* session, possibly to the log as well.
|
* given session, possibly to the log as well.
|
||||||
*/
|
*/
|
||||||
void
|
void
|
||||||
tprintf(struct proc *p, int pri, const char *fmt, ...)
|
tprintf(struct proc *p, int pri, const char *fmt, ...)
|
||||||
|
{
|
||||||
|
va_list ap;
|
||||||
|
|
||||||
|
va_start(ap, fmt);
|
||||||
|
vtprintf(p, pri, fmt, ap);
|
||||||
|
va_end(ap);
|
||||||
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
vtprintf(struct proc *p, int pri, const char *fmt, va_list ap)
|
||||||
{
|
{
|
||||||
struct tty *tp = NULL;
|
struct tty *tp = NULL;
|
||||||
int flags = 0;
|
int flags = 0;
|
||||||
va_list ap;
|
|
||||||
struct putchar_arg pca;
|
struct putchar_arg pca;
|
||||||
struct session *sess = NULL;
|
struct session *sess = NULL;
|
||||||
|
|
||||||
@ -208,13 +217,11 @@ tprintf(struct proc *p, int pri, const char *fmt, ...)
|
|||||||
pca.tty = tp;
|
pca.tty = tp;
|
||||||
pca.flags = flags;
|
pca.flags = flags;
|
||||||
pca.p_bufr = NULL;
|
pca.p_bufr = NULL;
|
||||||
va_start(ap, fmt);
|
|
||||||
if (pca.tty != NULL)
|
if (pca.tty != NULL)
|
||||||
tty_lock(pca.tty);
|
tty_lock(pca.tty);
|
||||||
kvprintf(fmt, putchar, &pca, 10, ap);
|
kvprintf(fmt, putchar, &pca, 10, ap);
|
||||||
if (pca.tty != NULL)
|
if (pca.tty != NULL)
|
||||||
tty_unlock(pca.tty);
|
tty_unlock(pca.tty);
|
||||||
va_end(ap);
|
|
||||||
if (sess != NULL)
|
if (sess != NULL)
|
||||||
sess_release(sess);
|
sess_release(sess);
|
||||||
msgbuftrigger = 1;
|
msgbuftrigger = 1;
|
||||||
|
@ -212,6 +212,7 @@ u_long strtoul(const char *, char **, int) __nonnull(1);
|
|||||||
quad_t strtoq(const char *, char **, int) __nonnull(1);
|
quad_t strtoq(const char *, char **, int) __nonnull(1);
|
||||||
u_quad_t strtouq(const char *, char **, int) __nonnull(1);
|
u_quad_t strtouq(const char *, char **, int) __nonnull(1);
|
||||||
void tprintf(struct proc *p, int pri, const char *, ...) __printflike(3, 4);
|
void tprintf(struct proc *p, int pri, const char *, ...) __printflike(3, 4);
|
||||||
|
void vtprintf(struct proc *, int, const char *, __va_list) __printflike(3, 0);
|
||||||
void hexdump(const void *ptr, int length, const char *hdr, int flags);
|
void hexdump(const void *ptr, int length, const char *hdr, int flags);
|
||||||
#define HD_COLUMN_MASK 0xff
|
#define HD_COLUMN_MASK 0xff
|
||||||
#define HD_DELIM_MASK 0xff00
|
#define HD_DELIM_MASK 0xff00
|
||||||
|
Loading…
x
Reference in New Issue
Block a user