MCPcopy Index your code
hub / github.com/python/cpython / shutdown

Method shutdown

Lib/multiprocessing/managers.py:1356–1359  ·  view source on GitHub ↗

Call unlink() on all tracked shared memory, terminate the Server.

(self, c)

Source from the content-addressed store, hash-verified

1354 return Server.create(self, c, typeid, *args, **kwargs)
1355
1356 def shutdown(self, c):
1357 "Call unlink() on all tracked shared memory, terminate the Server."
1358 self.shared_memory_context.unlink()
1359 return Server.shutdown(self, c)
1360
1361 def track_segment(self, c, segment_name):
1362 "Adds the supplied shared memory block name to Server's tracker."

Callers

nothing calls this directly

Calls 2

unlinkMethod · 0.45
shutdownMethod · 0.45

Tested by

no test coverage detected