erlang自动编译与加载
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

24 linhas
746 B

5 anos atrás
4 anos atrás
5 anos atrás
5 anos atrás
4 anos atrás
5 anos atrás
4 anos atrás
5 anos atrás
  1. -define(LOG_ON(Val), Val == true; Val == all; Val == skip_success; is_list(Val), Val =/= []).
  2. -define(gTimeout(Type, Time), {gTimeout, {doSync, Type}, Time, Type}).
  3. -define(TCP_DEFAULT_OPTIONS, [
  4. binary
  5. , {packet, 4}
  6. , {active, true}
  7. , {reuseaddr, true}
  8. , {nodelay, false}
  9. , {delay_send, true}
  10. , {send_timeout, 15000}
  11. , {keepalive, true}
  12. , {exit_on_close, true}]).
  13. -define(Log, log).
  14. -define(listenPort, listenPort).
  15. -define(compileCmd, compileCmd).
  16. -define(extraDirs, extraDirs).
  17. -define(descendant, descendant).
  18. -define(CfgList, [{?Log, all}, {?listenPort, 12369}, {?compileCmd, undefined}, {?extraDirs, undefined}, {?descendant, fix}]).
  19. -define(esCfgSync, esCfgSync).
  20. -define(esRecompileCnt, '$esRecompileCnt').