erlang自动编译与加载
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

24 строки
746 B

5 лет назад
4 лет назад
5 лет назад
4 лет назад
5 лет назад
4 лет назад
4 лет назад
5 лет назад
4 лет назад
5 лет назад
  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').