Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/lib/libpthread Add a missing bracket to make this compile.
details: https://anonhg.NetBSD.org/src/rev/981da813b5b2
branches: trunk
changeset: 542514:981da813b5b2
user: tron <tron%NetBSD.org@localhost>
date: Fri Jan 31 12:27:19 2003 +0000
description:
Add a missing bracket to make this compile.
diffstat:
lib/libpthread/pthread_run.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diffs (18 lines):
diff -r 27896580e70e -r 981da813b5b2 lib/libpthread/pthread_run.c
--- a/lib/libpthread/pthread_run.c Fri Jan 31 12:06:27 2003 +0000
+++ b/lib/libpthread/pthread_run.c Fri Jan 31 12:27:19 2003 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: pthread_run.c,v 1.5 2003/01/31 04:58:57 nathanw Exp $ */
+/* $NetBSD: pthread_run.c,v 1.6 2003/01/31 12:27:19 tron Exp $ */
/*-
* Copyright (c) 2001 The NetBSD Foundation, Inc.
@@ -151,7 +151,7 @@
pthread_spinlock(self, &pthread__runqueue_lock);
PTQ_FOREACH(thread, threadq, pt_sleep) {
- SDPRINTF(("(sched_sleepers %p) scheduling %p\n", self, thread);
+ SDPRINTF(("(sched_sleepers %p) scheduling %p\n", self, thread));
thread->pt_state = PT_STATE_RUNNABLE;
assert (thread->pt_type == PT_THREAD_NORMAL);
assert (thread->pt_spinlocks == 0);
Home |
Main Index |
Thread Index |
Old Index