class Async::Container::Forked::Child::Instance

def name= value

@parameter value [String] The name of the process.

Set the process title to the specified value.
def name= value
	@name = value
	
	# This sets the process title to an empty string if the name is nil:
	::Process.setproctitle(@name.to_s)
end