blob: 2285872ab004a19cfd56446cba2e824970fc4863 [file] [log] [blame]
Brian Carlstrom55621742011-10-17 00:41:56 -07001/*
2 * Copyright (C) 2011 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17import java.util.ArrayList;
18import java.util.List;
19
Andreas Gampe1c83cbc2014-07-22 18:52:29 -070020public class Main implements Runnable {
Brian Carlstrom55621742011-10-17 00:41:56 -070021 public static void main(String[] args) throws Exception {
22 Thread[] threads = new Thread[16];
23 for (int i = 0; i < threads.length; i++) {
Andreas Gampe1c83cbc2014-07-22 18:52:29 -070024 threads[i] = new Thread(new Main(i));
Brian Carlstrom55621742011-10-17 00:41:56 -070025 }
26 for (Thread thread : threads) {
27 thread.start();
28 }
29 for (Thread thread : threads) {
30 thread.join();
31 }
32 }
33
34 private final int id;
35
Andreas Gampe1c83cbc2014-07-22 18:52:29 -070036 private Main(int id) {
Brian Carlstrom55621742011-10-17 00:41:56 -070037 this.id = id;
38 }
39
40 public void run() {
41 List l = new ArrayList();
Mathieu Chartierc5a83472014-07-23 18:45:17 -070042 for (int i = 0; i < 400; i++) {
Brian Carlstrom55621742011-10-17 00:41:56 -070043 l.add(new ArrayList(i));
Brian Carlstrom55621742011-10-17 00:41:56 -070044 }
45 }
46}