Source-Changes-HG archive

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

[src/trunk]: src/lib/librumpuser Hrmph, revert previous pending another fix. ...



details:   https://anonhg.NetBSD.org/src/rev/8e333d6b6358
branches:  trunk
changeset: 796876:8e333d6b6358
user:      pooka <pooka%NetBSD.org@localhost>
date:      Mon Jun 23 12:38:18 2014 +0000

description:
Hrmph, revert previous pending another fix.  I tested it yesterday with
a slightly older tree, and of course it doesn't work anymore ...

diffstat:

 lib/librumpuser/rumpuser_pth.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r c70f3146b6d5 -r 8e333d6b6358 lib/librumpuser/rumpuser_pth.c
--- a/lib/librumpuser/rumpuser_pth.c    Mon Jun 23 10:53:20 2014 +0000
+++ b/lib/librumpuser/rumpuser_pth.c    Mon Jun 23 12:38:18 2014 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: rumpuser_pth.c,v 1.41 2014/06/22 20:17:23 pooka Exp $  */
+/*     $NetBSD: rumpuser_pth.c,v 1.42 2014/06/23 12:38:18 pooka Exp $  */
 
 /*
  * Copyright (c) 2007-2010 Antti Kantee.  All Rights Reserved.
@@ -28,7 +28,7 @@
 #include "rumpuser_port.h"
 
 #if !defined(lint)
-__RCSID("$NetBSD: rumpuser_pth.c,v 1.41 2014/06/22 20:17:23 pooka Exp $");
+__RCSID("$NetBSD: rumpuser_pth.c,v 1.42 2014/06/23 12:38:18 pooka Exp $");
 #endif /* !lint */
 
 #include <sys/queue.h>
@@ -87,7 +87,7 @@
        for (i = 0; i < 10; i++) {
                const struct timespec ts = {0, 10*1000*1000};
 
-               KLOCK_WRAP(rv = pthread_create(ptidp, &pattr, f, arg));
+               rv = pthread_create(ptidp, &pattr, f, arg);
                if (rv != EAGAIN)
                        break;
                nanosleep(&ts, NULL);



Home | Main Index | Thread Index | Old Index