(int refnum, GoObject obj)
| 255 | private final Collection<GoRef> refs = Collections.synchronizedCollection(new HashSet<GoRef>()); |
| 256 | |
| 257 | void track(int refnum, GoObject obj) { |
| 258 | refs.add(new GoRef(refnum, obj, this)); |
| 259 | } |
| 260 | |
| 261 | GoRefQueue() { |
| 262 | Thread daemon = new Thread(new Runnable() { |