Advertisement
Guest User

Untitled

a guest
Apr 25th, 2017
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. Eshell V8.2 (abort with ^G)
  2. 1> cd("f6_original").
  3. C:/Git/FLErlangConcurrency/f6_original
  4. ok
  5. 2> c(f6).
  6. {ok,f6}
  7. 3> f6:start().
  8. true
  9. 4> f6:allocate().
  10. {ok,10}
  11. 5> f6:allocate().
  12. {ok,11}
  13. 6> f6:allocate().
  14. {ok,12}
  15. 7> f6:allocate().
  16. {ok,13}
  17. 8> f6:allocate().
  18. {ok,14}
  19. 9> f6:allocate().
  20. {ok,15}
  21. 10> f6:allocate().
  22. {error,no_frequency}
  23. 11> f6:inject([21,22,23]).
  24. ** exception error: undefined function f6:inject/1
  25. 12> cd("../f6_upgrade").
  26. C:/Git/FLErlangConcurrency/f6_upgrade
  27. ok
  28. 13> pwd().
  29. C:/Git/FLErlangConcurrency/f6_upgrade
  30. ok
  31. 14> code:load_file(f6).
  32. {module,f6}
  33. 15> code:soft_purge(f6).
  34. false
  35. 16> f6:allocate().
  36. {error,no_frequency}
  37. 17> f6:inject([21,22,23]).
  38. injected
  39. 18> f6:allocate().
  40. {ok,21}
  41. 19> f6:allocate().
  42. {ok,22}
  43. 20> f6:allocate().
  44. {ok,23}
  45. 21> f6:allocate().
  46. {error,no_frequency}
  47. 22> f6:stop().
  48. stopped
  49. 23>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement