<feed xmlns='http://www.w3.org/2005/Atom'>
<title>android_dalvik/vm/native/java_lang_Runtime.c, branch cm-13.0</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.
</subtitle>
<link rel='alternate' type='text/html' href='https://git.replicant.us/mirrors/LineageOS/android_dalvik/'/>
<entry>
<title>Convert the internal and in-line natives to C++.</title>
<updated>2011-04-13T02:14:06+00:00</updated>
<author>
<name>Carl Shapiro</name>
<email>cshapiro@google.com</email>
</author>
<published>2011-04-13T02:14:06+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/mirrors/LineageOS/android_dalvik/commit/?id=db0c9549818d9f6e508d26e45ff9d886802aa1da'/>
<id>db0c9549818d9f6e508d26e45ff9d886802aa1da</id>
<content type='text'>
Change-Id: I2ece682bc3b4d3b55ab27c60fd84a0b3243d7ca6
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change-Id: I2ece682bc3b4d3b55ab27c60fd84a0b3243d7ca6
</pre>
</div>
</content>
</entry>
<entry>
<title>Move finalization out of the VM.</title>
<updated>2011-03-21T20:35:24+00:00</updated>
<author>
<name>Carl Shapiro</name>
<email>cshapiro@google.com</email>
</author>
<published>2011-03-21T20:35:24+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/mirrors/LineageOS/android_dalvik/commit/?id=3475f9cdb47a6d6f8ad2ce49bbc3af46bca92f09'/>
<id>3475f9cdb47a6d6f8ad2ce49bbc3af46bca92f09</id>
<content type='text'>
This change introduces a new reference class whose referent
points to instances requiring finalization.  This makes the
finalization of objects possible using a reference queue and
a dedicated thread which removes objects from the queue.

Change-Id: I0ff6dd272f00ca08c6ed3aa667bf766a039a944e
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This change introduces a new reference class whose referent
points to instances requiring finalization.  This makes the
finalization of objects possible using a reference queue and
a dedicated thread which removes objects from the queue.

Change-Id: I0ff6dd272f00ca08c6ed3aa667bf766a039a944e
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove an unused DalvikNativeMethod.</title>
<updated>2011-03-18T18:07:38+00:00</updated>
<author>
<name>Elliott Hughes</name>
<email>enh@google.com</email>
</author>
<published>2011-03-18T17:57:13+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/mirrors/LineageOS/android_dalvik/commit/?id=14b63ca9f3ba5b58c6f8ad703c7a9c68028aa230'/>
<id>14b63ca9f3ba5b58c6f8ad703c7a9c68028aa230</id>
<content type='text'>
Bug: 3107501
Change-Id: I9aa3f8b87d7d6d7a4d02e2a4a75b539864c2d4eb
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Bug: 3107501
Change-Id: I9aa3f8b87d7d6d7a4d02e2a4a75b539864c2d4eb
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove the unused argument to dvmCollectGarbage.</title>
<updated>2011-02-09T22:20:14+00:00</updated>
<author>
<name>Carl Shapiro</name>
<email>cshapiro@google.com</email>
</author>
<published>2011-02-09T22:20:14+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/mirrors/LineageOS/android_dalvik/commit/?id=bc3ba010007b0ed4dddf6d286d59ee41f5f361db'/>
<id>bc3ba010007b0ed4dddf6d286d59ee41f5f361db</id>
<content type='text'>
Change-Id: Id7bf60b99b33cb8f058f9a500dc63cfe01b8e3c2
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change-Id: Id7bf60b99b33cb8f058f9a500dc63cfe01b8e3c2
</pre>
</div>
</content>
</entry>
<entry>
<title>Implement growth limits to support multiple heap configurations.</title>
<updated>2011-01-19T01:59:30+00:00</updated>
<author>
<name>Carl Shapiro</name>
<email>cshapiro@google.com</email>
</author>
<published>2011-01-19T01:59:30+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/mirrors/LineageOS/android_dalvik/commit/?id=df9f08b877ecfd8ebadea822bb9e066ee7d30433'/>
<id>df9f08b877ecfd8ebadea822bb9e066ee7d30433</id>
<content type='text'>
When a growth limit is in effect, allocations will be limited to
number of bytes specified by the growth limit instead of the maximum
heap size.  Growth limits are specified on the command line with the
new parameter -XX:HeapGrowthLimit.  A growth limit can be removed at
runtime by calling the new clearGrowthLimit method.

This is a work around until we can adjust the maximum heap size at
runtime.

Change-Id: Ic01e32823b5ca8cf29c0948fb6cd2df10967c1fb
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
When a growth limit is in effect, allocations will be limited to
number of bytes specified by the growth limit instead of the maximum
heap size.  Growth limits are specified on the command line with the
new parameter -XX:HeapGrowthLimit.  A growth limit can be removed at
runtime by calling the new clearGrowthLimit method.

This is a work around until we can adjust the maximum heap size at
runtime.

Change-Id: Ic01e32823b5ca8cf29c0948fb6cd2df10967c1fb
</pre>
</div>
</content>
</entry>
<entry>
<title>Change Runtime.nativeLoad to return the dlerror(3) string.</title>
<updated>2010-09-30T23:48:54+00:00</updated>
<author>
<name>Elliott Hughes</name>
<email>enh@google.com</email>
</author>
<published>2010-09-30T22:51:31+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/mirrors/LineageOS/android_dalvik/commit/?id=f584b4a56e1d5b98ddd914cf5d40b7616bfa1302'/>
<id>f584b4a56e1d5b98ddd914cf5d40b7616bfa1302</id>
<content type='text'>
This has a companion change in libcore:
  https://android-git.corp.google.com/g/71342

Bug: 3044042
Change-Id: I070a80a41ec2f306f5092a641807017f70179451
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This has a companion change in libcore:
  https://android-git.corp.google.com/g/71342

Bug: 3044042
Change-Id: I070a80a41ec2f306f5092a641807017f70179451
</pre>
</div>
</content>
</entry>
<entry>
<title>merge from open-source master</title>
<updated>2010-06-15T21:46:37+00:00</updated>
<author>
<name>The Android Open Source Project</name>
<email>initial-contribution@android.com</email>
</author>
<published>2010-06-15T21:46:37+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/mirrors/LineageOS/android_dalvik/commit/?id=271e0104f7ef0831e439c40014e8499b0a2875b8'/>
<id>271e0104f7ef0831e439c40014e8499b0a2875b8</id>
<content type='text'>
Change-Id: I919a5dd1cc8d615c2d9224ff08e849394ee84df0
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change-Id: I919a5dd1cc8d615c2d9224ff08e849394ee84df0
</pre>
</div>
</content>
</entry>
<entry>
<title>New implementation for java.lang.Runtime's availableProcessors().</title>
<updated>2010-06-15T09:07:42+00:00</updated>
<author>
<name>Mikael Ohlson</name>
<email>mikael.ohlson@stericsson.com</email>
</author>
<published>2010-03-23T13:06:19+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/mirrors/LineageOS/android_dalvik/commit/?id=8ea8d24fcad0f0113615ef4dd331e4a127a66436'/>
<id>8ea8d24fcad0f0113615ef4dd331e4a127a66436</id>
<content type='text'>
This patch adds a native implementation for availableProcessors(),
replacing the hardcoded "always return 1" implementation.

It uses sysconf(_SC_NPROCESSORS_ONLN) to get the number of online
processors.

Signed-off-by: Christian Bejram &lt;christian.bejram@stericsson.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This patch adds a native implementation for availableProcessors(),
replacing the hardcoded "always return 1" implementation.

It uses sysconf(_SC_NPROCESSORS_ONLN) to get the number of online
processors.

Signed-off-by: Christian Bejram &lt;christian.bejram@stericsson.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixed the trace builder to correctly handle excpetion throwing instruction.</title>
<updated>2009-09-29T23:28:10+00:00</updated>
<author>
<name>Ben Cheng</name>
<email>bccheng@google.com</email>
</author>
<published>2009-09-29T23:12:51+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/mirrors/LineageOS/android_dalvik/commit/?id=79d173cad420b2ef99a09688e603df7ea4f890e9'/>
<id>79d173cad420b2ef99a09688e603df7ea4f890e9</id>
<content type='text'>
Added a new unit test 081-hot-exceptions to target this problem.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Added a new unit test 081-hot-exceptions to target this problem.
</pre>
</div>
</content>
</entry>
<entry>
<title>auto import from //depot/cupcake/@135843</title>
<updated>2009-03-04T03:28:47+00:00</updated>
<author>
<name>The Android Open Source Project</name>
<email>initial-contribution@android.com</email>
</author>
<published>2009-03-04T03:28:47+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/mirrors/LineageOS/android_dalvik/commit/?id=f6c387128427e121477c1b32ad35cdcaa5101ba3'/>
<id>f6c387128427e121477c1b32ad35cdcaa5101ba3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
