[BACK]Return to subr_prf.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / sys / kern

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/sys/kern/subr_prf.c between version 1.68 and 1.69

version 1.68, 2000/03/29 03:05:18 version 1.69, 2000/03/30 09:27:13
Line 357  addlog(fmt, va_alist)
Line 357  addlog(fmt, va_alist)
  */   */
 static void  static void
 putchar(c, flags, tp)  putchar(c, flags, tp)
         register int c;          int c;
         int flags;          int flags;
         struct tty *tp;          struct tty *tp;
 {  {
         register struct kern_msgbuf *mbp;          struct kern_msgbuf *mbp;
   
         if (panicstr)          if (panicstr)
                 constty = NULL;                  constty = NULL;
Line 423  uprintf(fmt, va_alist)
Line 423  uprintf(fmt, va_alist)
         va_dcl          va_dcl
 #endif  #endif
 {  {
         register struct proc *p = curproc;          struct proc *p = curproc;
         va_list ap;          va_list ap;
   
         if (p->p_flag & P_CONTROLT && p->p_session->s_ttyvp) {          if (p->p_flag & P_CONTROLT && p->p_session->s_ttyvp) {
Line 451  uprintf(fmt, va_alist)
Line 451  uprintf(fmt, va_alist)
   
 tpr_t  tpr_t
 tprintf_open(p)  tprintf_open(p)
         register struct proc *p;          struct proc *p;
 {  {
   
         if (p->p_flag & P_CONTROLT && p->p_session->s_ttyvp) {          if (p->p_flag & P_CONTROLT && p->p_session->s_ttyvp) {
Line 490  tprintf(tpr, fmt, va_alist)
Line 490  tprintf(tpr, fmt, va_alist)
         va_dcl          va_dcl
 #endif  #endif
 {  {
         register struct session *sess = (struct session *)tpr;          struct session *sess = (struct session *)tpr;
         struct tty *tp = NULL;          struct tty *tp = NULL;
         int s, flags = TOLOG;          int s, flags = TOLOG;
         va_list ap;          va_list ap;

Legend:
Removed from v.1.68  
changed lines
  Added in v.1.69

CVSweb <webmaster@jp.NetBSD.org>