summaryrefslogtreecommitdiff
path: root/src/thread_pool.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/thread_pool.cc')
-rw-r--r--src/thread_pool.cc23
1 files changed, 20 insertions, 3 deletions
diff --git a/src/thread_pool.cc b/src/thread_pool.cc
index 1686ea6368..a06f9d3bff 100644
--- a/src/thread_pool.cc
+++ b/src/thread_pool.cc
@@ -1,8 +1,25 @@
-#include "casts.h"
+/*
+ * Copyright (C) 2012 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#include "thread_pool.h"
+
+#include "base/casts.h"
+#include "base/stl_util.h"
#include "runtime.h"
-#include "stl_util.h"
#include "thread.h"
-#include "thread_pool.h"
namespace art {