名称：
	rusage - 报告以 getrusage() 系统呼叫 (system call) 收集的资讯。
语法：
	mapping rusage();

	映射 rusage();
用法：
	这个外部函式 (efun) 透过 getrusage() 的系统呼叫收集资讯。请参阅 
	getrusage() 系统说明手册 (man page) 以查询收集的资讯种类。有的系统
	没有 getrusage()，但是有 times() 的系统呼叫。在这种系统里只能取得
	“utime” 和“stime”两项资料。报告的时间单位是微秒 (millisecond)。 

	以下是 rusage() 的范例：

	void
	create()
	{
		mapping info;

		info = rusage();
		write("使用者时间 = " + info["utime"] + "微秒\n");
		write("系统时间 = " + info["stime"] + "微秒\n");
	}

	可以取得的项目有：

	utime, stime, maxrss, ixrss, idrss, isrss, minflt, majflt, nswap, 
	inblock, oublock, msgsnd, msgrcv, nsignals, nvcsw, nivcsw.
参考：
	time_expression, function_profile, time, uptime
作者：
	Tim Hollebeek  Beek@ZorkMUD, Lima Bean, IdeaExchange, and elsewhere
翻译：
	spock@muds.net		2000.Aug.20.	v22 版
