Module Name: src
Committed By: christos
Date: Wed Nov 14 23:25:05 UTC 2012
Modified Files:
src/lib/libpthread: pthread.c
Log Message:
add argsused
To generate a diff of this commit:
cvs rdiff -u -r1.140 -r1.141 src/lib/libpthread/pthread.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/lib/libpthread/pthread.c
diff -u src/lib/libpthread/pthread.c:1.140 src/lib/libpthread/pthread.c:1.141
--- src/lib/libpthread/pthread.c:1.140 Tue Nov 6 04:03:03 2012
+++ src/lib/libpthread/pthread.c Wed Nov 14 18:25:05 2012
@@ -1,4 +1,4 @@
-/* $NetBSD: pthread.c,v 1.140 2012/11/06 09:03:03 apb Exp $ */
+/* $NetBSD: pthread.c,v 1.141 2012/11/14 23:25:05 christos Exp $ */
/*-
* Copyright (c) 2001, 2002, 2003, 2006, 2007, 2008 The NetBSD Foundation, Inc.
@@ -30,7 +30,7 @@
*/
#include <sys/cdefs.h>
-__RCSID("$NetBSD: pthread.c,v 1.140 2012/11/06 09:03:03 apb Exp $");
+__RCSID("$NetBSD: pthread.c,v 1.141 2012/11/14 23:25:05 christos Exp $");
#define __EXPOSE_STACK 1
@@ -1303,6 +1303,7 @@ pthread__initmain(pthread_t *newt)
}
static signed int
+/*ARGSUSED*/
pthread__cmp(void *ctx, const void *n1, const void *n2)
{
const uintptr_t p1 = (const uintptr_t)n1;