blob: 15d5e50796bfad52f2443ad17b8b77625bbad6c4 [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;
Andreas Gampe21b4bf82014-07-25 16:37:09 -070038 // Allocate this early so it's independent of how the threads are scheduled on startup.
39 this.l = new ArrayList<Object>();
Brian Carlstrom55621742011-10-17 00:41:56 -070040 }
41
42 public void run() {
Andreas Gampe21b4bf82014-07-25 16:37:09 -070043 for (int i = 0; i < 1000; i++) {
44 try {
45 l.add(new ArrayList<Object>(i));
46 } catch (OutOfMemoryError oom) {
47 // Ignore.
48 }
Brian Carlstrom55621742011-10-17 00:41:56 -070049 }
50 }
Andreas Gampe21b4bf82014-07-25 16:37:09 -070051
52 private List<Object> l;
Brian Carlstrom55621742011-10-17 00:41:56 -070053}