Report bugs | Sign in
Powered by Melange
Release 0-5-20091102

Student Name: Simon Zhou
Mentor Name: Xiao-Feng Li
Title: Implement WeakReference support in Apache Harmony Concurent GC
Abstract: Apache Harmony has a concurrent GC(Tick) which performs garbage collection without suspending application threads. Tick don’t support weak reference now, it treats all the references as strong references,which may cause inefficiency for some applications.I will add this feature, it would be different from the implementation in gen GC,since the consistency should be maintained for the objects. Read barrier of get method of reference object will be used,and performance issues will be considered.