[#2021] No need to synchronize for unpooled chunks
This commit is contained in:
parent
4a680a3b49
commit
d66bffe271
@ -151,11 +151,13 @@ abstract class PoolArena<T> {
|
|||||||
buf.initUnpooled(newUnpooledChunk(reqCapacity), reqCapacity);
|
buf.initUnpooled(newUnpooledChunk(reqCapacity), reqCapacity);
|
||||||
}
|
}
|
||||||
|
|
||||||
synchronized void free(PoolChunk<T> chunk, long handle) {
|
void free(PoolChunk<T> chunk, long handle) {
|
||||||
if (chunk.unpooled) {
|
if (chunk.unpooled) {
|
||||||
destroyChunk(chunk);
|
destroyChunk(chunk);
|
||||||
} else {
|
} else {
|
||||||
chunk.parent.free(chunk, handle);
|
synchronized(this) {
|
||||||
|
chunk.parent.free(chunk, handle);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user