Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-04-18 | inets: Fix handling of relative paths in script_alias | Péter Dimitrov | |
- Add function for converting relative paths to absolute using the server_root property. Change-Id: If9b521e4444a3382f7e5449b187c1c0ebbb3d0f3 | |||
2018-04-18 | Fix after feedback | Raimo Niskanen | |
2018-04-18 | core_lint: Handle repeated variables in map patterns correctly | Björn Gustavsson | |
Keys in map patterns are input variables, not pattern variables. | |||
2018-04-18 | Merge branch 'sverker/lock-check-matrix' | Sverker Eriksson | |
2018-04-18 | Updated OTP versionOTP-20.3.3 | Erlang/OTP | |
2018-04-18 | Prepare release | Erlang/OTP | |
2018-04-18 | Merge branch 'siri/systools/make_hybrid_boot/OTP-15017' into maint-20 | Erlang/OTP | |
* siri/systools/make_hybrid_boot/OTP-15017: Update appup file for sasl Fix bug in hybrid boot file used for restart_new_emulator | |||
2018-04-18 | erl_interface: Fix ei_connect | Sverker Eriksson | |
when ei_gethostbyname_r returns ERANGE. | |||
2018-04-18 | Update appup file for sasl | Siri Hansen | |
2018-04-18 | Improve pointer to User's Guide | Raimo Niskanen | |
2018-04-18 | erts: Fix rare deadlock in realloc when +ramv is enabled | John Högberg | |
OTP-15024 | |||
2018-04-17 | Merge branch 'maint' | Péter Dimitrov | |
* maint: inets: Fix broken httpc options handling Change-Id: I9e44f0e53237a390048cab3aaf52ea0e1a5358a2 | |||
2018-04-17 | Merge branch 'peterdmv/httpc_options_handling/ERL-441/OTP-15007' into maint | Péter Dimitrov | |
* peterdmv/httpc_options_handling/ERL-441/OTP-15007: inets: Fix broken httpc options handling Change-Id: Ib05f5718c46128bb2aca7c3962bd94e9fa244da0 | |||
2018-04-17 | ssh: Fix server crashes for exit-normal signals | Hans Nilsson | |
2018-04-17 | Merge branch 'peterdmv/httpc_delete_requests/ERL-536/OTP-15006' | Péter Dimitrov | |
* peterdmv/httpc_delete_requests/ERL-536/OTP-15006: inets: Fix broken handling of header Content-Type Change-Id: I8d6f23d830961f71a198377351f14b0e97dcd44b | |||
2018-04-17 | Do not use lists:concat where lists:append is intended | Richard Carlsson | |
2018-04-17 | Fix after feedback on 'When to use' | Raimo Niskanen | |
2018-04-16 | Disregard locks that can't be toggled in lcnt_SUITE | John Högberg | |
2018-04-16 | Fix bug in hybrid boot file used for restart_new_emulator | Siri Hansen | |
The old hybrid did not update preloaded and mandatory module lists and kernel processes. | |||
2018-04-16 | tools: Generate typespecs in doc build | John Högberg | |
2018-04-16 | erts: Keep track of which NIF a scheduler is executing | John Högberg | |
This may be of interest in crash dumps and allows the upcoming allocation tagging feature to track allocations on a per-NIF basis. Note that this is only updated when user code calls a NIF; it's not altered when the emulator calls NIFs during code upgrades or tracing. | |||
2018-04-16 | erts: Always keep a copy of driver names as an atom | John Högberg | |
2018-04-16 | erts: Update esdp->current_port on immediate port calls | John Högberg | |
This increases the accuracy of crash dumps and the upcoming allocation tagging feature. | |||
2018-04-16 | Remove warnings for improper use of erlang:get_stacktrace/0 | Björn Gustavsson | |
Those warnings don't make sense any more since erlang:get_stacktrace/0 is now deprecated. | |||
2018-04-16 | Deprecate erlang:get_stacktrace/0 | Björn Gustavsson | |
2018-04-16 | asn1: Eliminate use of erlang:get_stacktrace/0 | Björn Gustavsson | |
Also eliminate use of erlang:get_stacktrace/0 in code generated by the ASN.1 compiler. | |||
2018-04-16 | hipe: Eliminate use of erlang:get_stacktrace/0 | Björn Gustavsson | |
2018-04-16 | Merge branch 'rickard/process_info/OTP-14966' | Rickard Green | |
* rickard/process_info/OTP-14966: Fix deadlock in HiPE gc after receive | |||
2018-04-16 | Merge branch 'bjorn/compiler/beam_validator' | Björn Gustavsson | |
* bjorn/compiler/beam_validator: beam_validator: Remove repeated "this" beam_validator: Remove unnecessary inclusion of beam_disasm.hrl beam_validator: Strengthen validation of remaining GC instructions | |||
2018-04-16 | Merge pull request #1780 from erlang/HansN-patch-1 | Hans Nilsson | |
Update SSH(6) documentation | |||
2018-04-16 | Merge pull request #1776 from surik/patch-1 | Hans Nilsson | |
Fix typo in ssh key_cb type description | |||
2018-04-16 | Fix deadlock in HiPE gc after receive | Rickard Green | |
2018-04-16 | Fix seq_trace erl_tracer bug | Lukas Larsson | |
2018-04-14 | ssh: Fix server crashes for exit-normal signals | Hans Nilsson | |
2018-04-13 | Add correction of relup when upgrading from 20-21 with inets and ftp/tftp | Siri Hansen | |
2018-04-13 | Add zzz_SUITE with erts_debug:lc_graph last in tests | Sverker Eriksson | |
for erts, stdlib, kernel and runtime_tools. | |||
2018-04-13 | erts: Make locked checker allocations thread specific | Sverker Eriksson | |
Also removed unused ERTS_LC_STATIC_ALLOC. | |||
2018-04-13 | erts: Add erts_debug:lc_graph/0 | Sverker Eriksson | |
Run debug VM or config with --enable-lock-checking. Exercise VM and then run erts_debug:lc_graph(). to create a file "lc_graph.<pid>" in current working directory. | |||
2018-04-13 | erts: Refactor erl_lock_check.c | Sverker Eriksson | |
with just lots of renaming, nothing else. erts_lc_locked_locks_t -> lc_thread_t create_locked_locks -> create_thread_data l_lcks -> thr l_lck -> ll And dropped erts_ prefix on some file scope types. | |||
2018-04-13 | Merge branch 'rickard/auth-timeout/ERL-601/OTP-15009' | Rickard Green | |
* rickard/auth-timeout/ERL-601/OTP-15009: Set infinity timeout for auth requests | |||
2018-04-13 | Merge branch 'rickard/monotonic_time_1_fix/OTP-15008' | Rickard Green | |
* rickard/monotonic_time_1_fix/OTP-15008: Teach erlang:monotonic_time/1 the perf_counter time unit | |||
2018-04-13 | Merge branch 'rickard/process_info/OTP-14966' | Rickard Green | |
* rickard/process_info/OTP-14966: New process_info() implementation using signals | |||
2018-04-13 | Merge branch 'rickard/signals/OTP-14589' | Rickard Green | |
* rickard/signals/OTP-14589: Fix VM probes compilation Conflicts: erts/emulator/beam/erl_message.c | |||
2018-04-12 | Merge PR-1770 from sverker/float_to_list-tweak/OTP-15015 | Sverker Eriksson | |
Improve float_to_list(F, [{decimals,D}]) | |||
2018-04-12 | Merge branch 'lukas/erts/init_restart_flush_messages/OTP-15013' | Lukas Larsson | |
* lukas/erts/init_restart_flush_messages/OTP-15013: erts: Flush messages before doing init restart | |||
2018-04-12 | Merge branch 'lukas/erts/fix_openbsd_eof_poll/OTP-14346' | Lukas Larsson | |
* lukas/erts/fix_openbsd_eof_poll/OTP-14346: erts: Break etp-processes/ports when all found erts: Don't use EV_DISPATCH on openbsd | |||
2018-04-12 | inets: Fix broken httpc options handling | Péter Dimitrov | |
- Add support for setting socket options per request. - Add http_ipv6 test group. Change-Id: Ia2aca37c0b5fe64a41995c79ae3399434b17ab8a | |||
2018-04-12 | erts: Remove obsolete locks from lock checker | Sverker Eriksson | |
2018-04-12 | New process_info() implementation using signals | Rickard Green | |
2018-04-12 | Add a 'When to use' section | Raimo Niskanen | |