Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/kern Keep condvar wmesg within 8-char limit



details:   https://anonhg.NetBSD.org/src/rev/d7aca1d7951e
branches:  trunk
changeset: 757031:d7aca1d7951e
user:      pgoyette <pgoyette%NetBSD.org@localhost>
date:      Wed Aug 11 11:46:32 2010 +0000

description:
Keep condvar wmesg within 8-char limit

diffstat:

 sys/kern/sys_pipe.c |  12 ++++++------
 1 files changed, 6 insertions(+), 6 deletions(-)

diffs (33 lines):

diff -r 0ce9d49a5bd8 -r d7aca1d7951e sys/kern/sys_pipe.c
--- a/sys/kern/sys_pipe.c       Wed Aug 11 11:43:13 2010 +0000
+++ b/sys/kern/sys_pipe.c       Wed Aug 11 11:46:32 2010 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: sys_pipe.c,v 1.127 2009/12/20 09:36:06 dsl Exp $       */
+/*     $NetBSD: sys_pipe.c,v 1.128 2010/08/11 11:46:32 pgoyette Exp $  */
 
 /*-
  * Copyright (c) 2003, 2007, 2008, 2009 The NetBSD Foundation, Inc.
@@ -68,7 +68,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: sys_pipe.c,v 1.127 2009/12/20 09:36:06 dsl Exp $");
+__KERNEL_RCSID(0, "$NetBSD: sys_pipe.c,v 1.128 2010/08/11 11:46:32 pgoyette Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -211,10 +211,10 @@
                pipe->pipe_kmem = va;
                atomic_add_int(&amountpipekva, PIPE_SIZE);
        }
-       cv_init(&pipe->pipe_rcv, "piperd");
-       cv_init(&pipe->pipe_wcv, "pipewr");
-       cv_init(&pipe->pipe_draincv, "pipedrain");
-       cv_init(&pipe->pipe_lkcv, "pipelk");
+       cv_init(&pipe->pipe_rcv, "pipe_rd");
+       cv_init(&pipe->pipe_wcv, "pipe_wr");
+       cv_init(&pipe->pipe_draincv, "pipe_drn");
+       cv_init(&pipe->pipe_lkcv, "pipe_lk");
        selinit(&pipe->pipe_sel);
        pipe->pipe_state = PIPE_SIGNALR;
 



Home | Main Index | Thread Index | Old Index