Home | History | Annotate | Download | only in multiprocessing

Lines Matching defs:free

112         # list of pending blocks to free - see free() comment below
144 # free location and try to merge with neighbours
189 # Free all the blocks in the pending list - called with the lock held.
198 def free(self, block):
199 # free a block returned by malloc()
200 # Since free() can be called asynchronously by the GC, it could happen
205 # synchronously sometimes later from malloc() or free(), by calling
211 # pending blocks to free
250 util.Finalize(self, BufferWrapper._heap.free, args=(block,))