浏览 1774 次
锁定老帖子 主题:erlang最小系统支持从远端加载beam
精华帖 (0) :: 良好帖 (0) :: 新手帖 (0) :: 隐藏帖 (0)
|
|
---|---|
作者 | 正文 |
发表时间:2008-12-12
-hosts Hosts Specifies the IP addresses for the hosts on which Erlang boot servers are running, see erl_boot_server(3). This flag is mandatory if the -loader inet flag is present. The IP addresses must be given in the standard form (four decimal numbers separated by periods, for example "150.236.20.74". Hosts names are not acceptable, but a broadcast address (preferably limited to the local network) is. -id Id Specifies the identity of the Erlang runtime system. If it is run as a distributed node, Id must be identical to the name supplied together with the -sname or -name flag. -loader Loader Specifies the method used by erl_prim_loader to load Erlang modules into the system. See erl_prim_loader(3). Two Loader methods are supported, efile and inet. efile means use the local file system, this is the default. inet means use a boot server on another machine, and the -id, -hosts and -setcookie flags must be specified as well. If Loader is something else, the user supplied Loader port program is started. preload的模块: struct { char* name; int size; unsigned char* code; } pre_loaded[] = { {"otp_ring0", 512, preloaded_otp_ring0}, {"init", 19096, preloaded_init}, {"prim_inet", 25948, preloaded_prim_inet}, {"prim_file", 12264, preloaded_prim_file}, {"zlib", 4248, preloaded_zlib}, {"prim_zip", 8228, preloaded_prim_zip}, {"erl_prim_loader", 21616, preloaded_erl_prim_loader}, {"erlang", 7776, preloaded_erlang}, {0, 0, 0} }; 所以必须预加载这些基础模块以便进一步load所需的beam. 声明:ITeye文章版权属于作者,受法律保护。没有作者书面许可不得转载。
推荐链接
|
|
返回顶楼 | |