health.check_current_maps
声明
public void check_current_maps()
参数
参数名 | 描述 |
---|
作用
unix下:检测当前使用map数
使用方式
HealthD.gs
import gs.lang.*;
import gs.util.*;
import pkg.gtest;
import pkg.health;
void create()
{
load_static(health, this_domain());
}
void destruct()
{
health.end();
}
public mixed check_current_maps()
{
health.check_current_maps();
return "success";
}