aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2019-08-20mnesia: Update old format I/O-requestHans Bolinder
2019-08-20kernel: Update old format I/O-requestsHans Bolinder
2019-08-20stdlib: Remove no longer used functionHans Bolinder
2019-08-20kernel: Remove commented out codeHans Bolinder
2019-08-20stdlib: Remove commented out codeHans Bolinder
2019-08-20Merge branch 'ampleyfly/eunit/surefire_controlchars/OTP-15950/ERL-991/PR-2316'Hans Bolinder
* ampleyfly/eunit/surefire_controlchars/OTP-15950/ERL-991/PR-2316: ERL-991 Strip control codes from eunit_surefire output
2019-08-20Merge branch 'maint'Hans Bolinder
* maint: fun2ms: accept ++ in function head when called from shell
2019-08-20Merge branch 'legoscia/stdlib/fun2ms-plusplus/OTP-15992/PR-2322' into maintHans Bolinder
* legoscia/stdlib/fun2ms-plusplus/OTP-15992/PR-2322: fun2ms: accept ++ in function head when called from shell
2019-08-19Add helping verbTom Kelley
Needed a helping verb, added a helping verb.
2019-08-19Merge branch 'maint'Sverker Eriksson
2019-08-19Merge branch 'sverker/erl_interface/ei_decode_fun-fix/OTP-15996' into maintSverker Eriksson
* sverker/erl_interface/ei_decode_fun-fix/OTP-15996: erl_interface: Fix bug in ei_decode_fun for very old encoding
2019-08-19Merge branch 'maint'Ingela Anderton Andin
2019-08-19Merge branch 'ingela/ssl/test-cuddle' into maintIngela Anderton Andin
* ingela/ssl/test-cuddle: ssl: Add OpenSSL renegotiate sanity check ssl: Fix missing OpenSSL conf
2019-08-19ssl: Add OpenSSL renegotiate sanity checkIngela Anderton Andin
2019-08-19ssl: Fix missing OpenSSL confIngela Anderton Andin
2019-08-19Merge branch 'maint'Hans Nilsson
* maint: ssh: Use new ssh_connection:event() type in channel defs ssh: change type names ssh: The ssh_connection documentation is now generated ssh: Update ssh_sftp:start_channel documentation and code ssh: The ssh_sftp documentation is now generated ssh: The ssh_sftpd documentation is now generated
2019-08-19Merge branch 'hans/ssh/gendoc/OTP-15395' into maintHans Nilsson
* hans/ssh/gendoc/OTP-15395: ssh: Use new ssh_connection:event() type in channel defs ssh: change type names ssh: The ssh_connection documentation is now generated ssh: Update ssh_sftp:start_channel documentation and code ssh: The ssh_sftp documentation is now generated ssh: The ssh_sftpd documentation is now generated
2019-08-19Merge branch 'maint'Hans Nilsson
* maint: ssh: Remove unused address,port from #connection{} ssh: Remove unused port_bindings from #connection{}
2019-08-19Merge branch 'hans/ssh/remove_unused_rec_fields/OTP-15984' into maintHans Nilsson
* hans/ssh/remove_unused_rec_fields/OTP-15984: ssh: Remove unused address,port from #connection{} ssh: Remove unused port_bindings from #connection{}
2019-08-19Merge branch 'maint'Hans Nilsson
* maint: ssh: Don't assume Reason to be a string()
2019-08-19Merge branch 'hans/ssh/early_crash_fail_logging/ERL-990/OTP-15962' into maintHans Nilsson
* hans/ssh/early_crash_fail_logging/ERL-990/OTP-15962: ssh: Don't assume Reason to be a string()
2019-08-19Merge branch 'maint'Hans Bolinder
* maint: kernel: Correct a test case in global_SUITE
2019-08-19Merge branch 'hasse/kernel/global_tests' into maintHans Bolinder
* hasse/kernel/global_tests: kernel: Correct a test case in global_SUITE
2019-08-16ssh: Don't assume Reason to be a string()Hans Nilsson
2019-08-16Merge branch 'maint'Björn Gustavsson
* maint: Fix an internal consistency check failure caused by beam_except
2019-08-16Merge pull request #2349 from ↵Björn Gustavsson
bjorng/bjorn/compiler/fix-beam_except/ERL-1026/OTP-15985 Fix an internal consistency check failure caused by beam_except
2019-08-16Merge branch 'john/compiler/recv-test-coverage'John Högberg
* john/compiler/recv-test-coverage: compiler: Improve test coverage for recv_crit_edges
2019-08-16Merge branch 'maint'John Högberg
* maint: erts: Scan heap fragments for off-heap binaries
2019-08-16Merge branch 'john/erts/process_info-binary-heap-fragments/OTP-15978' into maintJohn Högberg
* john/erts/process_info-binary-heap-fragments/OTP-15978: erts: Scan heap fragments for off-heap binaries
2019-08-16Merge pull request #2343 from josevalim/patch-13John Högberg
Document file:open/2 monitors the owner process
2019-08-15Merge pull request #2350 from iredmail/patch-1Sverker Eriksson
Remove duplicate word in doc.
2019-08-16Remove duplicate word.iRedMail
Remove duplicate word.
2019-08-15erts: Refactor ets catree deletionSverker Eriksson
to maintain consistency of the trees during yielding and by that avoid problems with test inspection like erts_debug:get_internal_state(node_and_dist_references).
2019-08-15compiler: Improve test coverage for recv_crit_edgesJohn Högberg
2019-08-15Fix an internal consistency check failure caused by beam_exceptBjörn Gustavsson
https://bugs.erlang.org/browse/ERL-1026
2019-08-14Merge branch 'maint'Björn Gustavsson
* maint: Fix compiler crash when compiling some receive statements
2019-08-14Merge pull request #2347 from ↵Björn Gustavsson
bjorng/bjorn/compiler/fix-receive-bug/ERL-1022/OTP-15982 Fix compiler crash when compiling some receive statements
2019-08-14ssh: Remove unused address,port from #connection{}Hans Nilsson
2019-08-14ssh: Remove unused port_bindings from #connection{}Hans Nilsson
2019-08-14Fix compiler crash when compiling some receive statementsBjörn Gustavsson
The compiler would crash when compiling the following code: do(Acc) -> receive {Pid, abc} -> ok; {Pid, []} -> ok; {Pid, _Res} -> exit(_Res) end, do([Pid | Acc]). The last clause that always raises an exception would confuse the compiler so that it would think that the `receive` statement was at the end of the function and it would generate incorrect code for the `do/1` call following the `receive`. https://bugs.erlang.org/browse/ERL-1022
2019-08-13erl_interface: Fix bug in ei_decode_fun for very old encodingSverker Eriksson
Found by valgrind test runs.
2019-08-13Merge branch 'maint'John Högberg
* maint: erts: Fix crash in instrument:allocations/0-1
2019-08-13Merge branch 'john/erts/fix-instrument-allocations-race/OTP-15983' into maintJohn Högberg
* john/erts/fix-instrument-allocations-race/OTP-15983: erts: Fix crash in instrument:allocations/0-1
2019-08-13erts: Restructure include of hash.h to work with inlineLukas Larsson
erl_child_setup is linked together with hash.o so we need to inline any functions into it when running in debug mode.
2019-08-12ssh: Use new ssh_connection:event() type in channel defsHans Nilsson
2019-08-12ssh: change type namesHans Nilsson
2019-08-12ssh: The ssh_connection documentation is now generatedHans Nilsson
2019-08-12ssh: Update ssh_sftp:start_channel documentation and codeHans Nilsson
The Typing in the old documentation was not up-to-date. The option handling and definition is slightly re-worked in the code also. Some comments added and a function moved inside the module.
2019-08-12ssh: The ssh_sftp documentation is now generatedHans Nilsson
2019-08-12ssh: The ssh_sftpd documentation is now generatedHans Nilsson