
	clean_up(4)		MudOS v21c2		(5 Sep 1994)

	名称:
		clean_up - 在一个互动的 (interactive) 物件中定期呼叫
			   此函式.
	语法:
		int clean_up( int inherited );

		整数 clean_up( 整数 inherited );
	用法:
		驱动程式 (driver) 为在一段时间之内没有活动 (inactive) 
		的物件呼叫 clean_up() 函式. 此段时间的长短, 定义在执行
		时段组态档 (rumtime configuration file) 中. clean_up()
		会收到一个旗标 (flag) , 指出此物件是否有别的物件继承
		(inherit) 它. 如果 clean_up() 传回 0, 则此物件将永远不
		再呼叫 clean_up().  如果传回 1, 则在指定的 clean_up()
		延迟时间之後物件仍没有活动的话, 再呼叫一次 clean_up().

		通常一个物件在 clean_up() 中所作的事, 是摧毁自己以节省
		记忆体.
	翻译:
		Spock @ FF	97.Aug.3.		(printed 3/16/95)
