You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kudu.apache.org by mp...@apache.org on 2016/07/12 07:45:37 UTC

[2/2] incubator-kudu git commit: barrier.h: Add missing thread_restrictions.h include

barrier.h: Add missing thread_restrictions.h include

This is required for ThreadRestrictions::AssertWaitAllowed().

Change-Id: I6eab8e9e9d69cea44eb62d01137040fe02043537
Reviewed-on: http://gerrit.cloudera.org:8080/3620
Tested-by: Kudu Jenkins
Reviewed-by: Adar Dembo <ad...@cloudera.com>


Project: http://git-wip-us.apache.org/repos/asf/incubator-kudu/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-kudu/commit/074f849c
Tree: http://git-wip-us.apache.org/repos/asf/incubator-kudu/tree/074f849c
Diff: http://git-wip-us.apache.org/repos/asf/incubator-kudu/diff/074f849c

Branch: refs/heads/master
Commit: 074f849c8e5967bb4265b0dc83e244354263b105
Parents: 45a87a9
Author: Mike Percy <mp...@apache.org>
Authored: Mon Jul 11 20:19:39 2016 -0700
Committer: Mike Percy <mp...@apache.org>
Committed: Tue Jul 12 07:45:18 2016 +0000

----------------------------------------------------------------------
 src/kudu/util/barrier.h | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-kudu/blob/074f849c/src/kudu/util/barrier.h
----------------------------------------------------------------------
diff --git a/src/kudu/util/barrier.h b/src/kudu/util/barrier.h
index 901d46d..88e5682 100644
--- a/src/kudu/util/barrier.h
+++ b/src/kudu/util/barrier.h
@@ -19,6 +19,7 @@
 #include "kudu/gutil/macros.h"
 #include "kudu/util/condition_variable.h"
 #include "kudu/util/mutex.h"
+#include "kudu/util/thread_restrictions.h"
 
 namespace kudu {