| Brian Carlstrom | 5562174 | 2011-10-17 00:41:56 -0700 | [diff] [blame] | 1 | /* | 
|  | 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 |  | 
|  | 17 | import java.util.ArrayList; | 
|  | 18 | import java.util.List; | 
|  | 19 |  | 
| Andreas Gampe | 1c83cbc | 2014-07-22 18:52:29 -0700 | [diff] [blame] | 20 | public class Main implements Runnable { | 
| Brian Carlstrom | 5562174 | 2011-10-17 00:41:56 -0700 | [diff] [blame] | 21 | public static void main(String[] args) throws Exception { | 
|  | 22 | Thread[] threads = new Thread[16]; | 
|  | 23 | for (int i = 0; i < threads.length; i++) { | 
| Andreas Gampe | 1c83cbc | 2014-07-22 18:52:29 -0700 | [diff] [blame] | 24 | threads[i] = new Thread(new Main(i)); | 
| Brian Carlstrom | 5562174 | 2011-10-17 00:41:56 -0700 | [diff] [blame] | 25 | } | 
|  | 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 Gampe | 1c83cbc | 2014-07-22 18:52:29 -0700 | [diff] [blame] | 36 | private Main(int id) { | 
| Brian Carlstrom | 5562174 | 2011-10-17 00:41:56 -0700 | [diff] [blame] | 37 | this.id = id; | 
| Andreas Gampe | 21b4bf8 | 2014-07-25 16:37:09 -0700 | [diff] [blame^] | 38 | // Allocate this early so it's independent of how the threads are scheduled on startup. | 
|  | 39 | this.l = new ArrayList<Object>(); | 
| Brian Carlstrom | 5562174 | 2011-10-17 00:41:56 -0700 | [diff] [blame] | 40 | } | 
|  | 41 |  | 
|  | 42 | public void run() { | 
| Andreas Gampe | 21b4bf8 | 2014-07-25 16:37:09 -0700 | [diff] [blame^] | 43 | for (int i = 0; i < 1000; i++) { | 
|  | 44 | try { | 
|  | 45 | l.add(new ArrayList<Object>(i)); | 
|  | 46 | } catch (OutOfMemoryError oom) { | 
|  | 47 | // Ignore. | 
|  | 48 | } | 
| Brian Carlstrom | 5562174 | 2011-10-17 00:41:56 -0700 | [diff] [blame] | 49 | } | 
|  | 50 | } | 
| Andreas Gampe | 21b4bf8 | 2014-07-25 16:37:09 -0700 | [diff] [blame^] | 51 |  | 
|  | 52 | private List<Object> l; | 
| Brian Carlstrom | 5562174 | 2011-10-17 00:41:56 -0700 | [diff] [blame] | 53 | } |