From 981f2a1b65ddcae68534ded9aa47d1ca460ec582 Mon Sep 17 00:00:00 2001 From: sageweil Date: Thu, 22 Mar 2007 15:12:33 +0000 Subject: [PATCH] * thread join more forgiving git-svn-id: https://ceph.svn.sf.net/svnroot/ceph@1287 29311d96-e01e-0410-9327-a35deaab8ce9 --- trunk/ceph/common/Thread.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trunk/ceph/common/Thread.h b/trunk/ceph/common/Thread.h index 8565ce9effd92..e7feb1765be93 100644 --- a/trunk/ceph/common/Thread.h +++ b/trunk/ceph/common/Thread.h @@ -45,7 +45,7 @@ class Thread { } int join(void **prval = 0) { - assert(thread_id); + //assert(thread_id); // for now //if (thread_id == 0) return -1; // never started. int status = pthread_join(thread_id, prval); -- 2.39.5