Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-12-20 | erts: Correct memory footprint for maps | Sverker Eriksson | |
Small map was wrong as we should include our own top Eterm and exclude them for keys and values. Large maps was wrong as it described the theoretical minimum of a full tree, which does not happen in reality. | |||
2016-12-20 | crypto: Support chacha20_poly1305 | Yuki Ito | |
This commit reactivates chacha20_poly1305 and fixes the imprementation for the released OpenSSL 1.1.0 or later. | |||
2016-12-20 | inets: httpc - Chunk size decoding could fail | Ingela Anderton Andin | |
Correct chunk decoding by adding missing argument to match. The symptom was that chunk decoding sometimes failed depending on stream data arrival timing. | |||
2016-12-20 | Merge branch 'maint' | Siri Hansen | |
2016-12-20 | Merge branch 'siri/cdv/multi-line-slogan/ERL-318/OTP-14093' into maint | Siri Hansen | |
* siri/cdv/multi-line-slogan/ERL-318/OTP-14093: [crashdump_viewer] Allow multiple lines in Slogan | |||
2016-12-20 | Merge branch 'siri/etop/cpu-per-interval/OTP-14090' into maint | Siri Hansen | |
* siri/etop/cpu-per-interval/OTP-14090: [etop] Show CPU utilization for last interval only | |||
2016-12-19 | Merge branch 'maint' | Sverker Eriksson | |
2016-12-19 | Merge branch 'sverker/cuddle-port_SUITE' into maint | Sverker Eriksson | |
* sverker/cuddle-port_SUITE: erts: Fix faulty printout in port_SUITE | |||
2016-12-19 | erts: Add some improvements to erl_nif docs | Sverker Eriksson | |
2016-12-19 | erts: Add ERL_ABORT_ON_FAILURE for driver_SUITE | Sverker Eriksson | |
2016-12-19 | erts: Tidy up in efile_drv.c | Sverker Eriksson | |
ERL_DRV_USE_NO_CALLBACK only meaningful when deselecting. | |||
2016-12-19 | Merge branch 'maint' | Björn-Egil Dahlberg | |
2016-12-19 | Merge branch 'legoscia/remove-watchdog-vestiges/PR-1255/OTP-14112' into maint | Björn-Egil Dahlberg | |
* legoscia/remove-watchdog-vestiges/PR-1255/OTP-14112: Remove vestiges of watchdog support in heart | |||
2016-12-19 | Merge branch 'egil/public_key/use-maps-instead-of-dict/OTP-14111' | Björn-Egil Dahlberg | |
2016-12-19 | Merge pull request #1280 from bjorng/bjorn/effiency-guide-myths/OTP-13652 | Björn Gustavsson | |
Update the myths in the Efficiency Guide for OTP 20 | |||
2016-12-19 | Extend the text for "_" myth | Björn Gustavsson | |
Thanks to Joe Armstrong for the suggestion. | |||
2016-12-19 | Shorten the tail-recursion myth | Björn Gustavsson | |
The myth about tail recursion being faster than body recursion still seems to be alive, but we don't need to spend that much space discussing it as we needed earlier. Shorten the discussion and include a link to to Fred Hebert's excellent blog post. | |||
2016-12-19 | Merge branch 'maint' | Rickard Green | |
* maint: Remove faulty release note for these fixes New test cases testing stacktrace from apply on erlang:error() Fix stactrace for apply on error/[1,2], exit/1, or throw/1 Fix stack-trace generated by a traced process Conflicts: erts/emulator/beam/beam_emu.c erts/etc/unix/etp-commands.in | |||
2016-12-19 | Merge branch 'rickard/stacktrace-bugs' into maint | Rickard Green | |
OTP-14055 * rickard/stacktrace-bugs: Remove faulty release note for these fixes New test cases testing stacktrace from apply on erlang:error() Fix stactrace for apply on error/[1,2], exit/1, or throw/1 Fix stack-trace generated by a traced process | |||
2016-12-19 | Remove faulty release note for these fixes | Rickard Green | |
2016-12-19 | New test cases testing stacktrace from apply on erlang:error() | Rickard Green | |
2016-12-19 | Fix stactrace for apply on error/[1,2], exit/1, or throw/1 | Rickard Green | |
2016-12-19 | Fix stack-trace generated by a traced process | Rickard Green | |
2016-12-19 | erts: Fix faulty printout in port_SUITE | Sverker Eriksson | |
2016-12-19 | Merge pull request #1288 from bjorng/bjorn/compiler/use-less-memory | Björn Gustavsson | |
Reduce memory consumption during compilation | |||
2016-12-19 | Merge pull request #1290 from bjorng/bjorn/stdlib/take | Björn Gustavsson | |
Add take/2 to all dictionary modules OTP-14102 | |||
2016-12-19 | Add take/2 to all dictionary modules | Björn Gustavsson | |
Similar to maps:take/2, add take/2 to the other dictionary modules in STDLIB: orddict:take(Key, Dict) -> {Val,NewDict} | 'error'. dict:take(Key, Dict) -> {Val,NewDict} | 'error'. gb_trees:take(Key, Dict) -> {Val,NewDict}. For gb_trees also add: gb_trees:take_any(Key, Dict) -> {Val,NewDict} | 'error'. gb_trees already has delete() and delete_any(), so we will follow that design pattern. Suggested by Boris Bochkaryov in https://github.com/erlang/otp/pull/1209. | |||
2016-12-19 | Merge branch 'maint' | Ingela Anderton Andin | |
2016-12-19 | Merge branch 'ingela/ssl/terminate/OTP-14100' into maint | Ingela Anderton Andin | |
* ingela/ssl/terminate/OTP-14100: ssl: Correct terminate behaviour | |||
2016-12-19 | ssl: Correct terminate behaviour | Ingela Anderton Andin | |
When the terminate function is called explicitly, to make guarantees that for instance the reuseaddr option works as expected, we must make sure that the clean up code is not run again when gen_statem calls terminate. This check was broken in the rewrite from gen_fsm to gen_statem. Caused PEM cache errors, that in some cases would cause unexpected connection failures. | |||
2016-12-16 | ssh: Use maps instead of dict in ssh_sftp | Björn-Egil Dahlberg | |
2016-12-16 | ssh: Remove whitespace errors in ssh_sftp.erl | Björn-Egil Dahlberg | |
2016-12-16 | public_key: Use maps instead of dict | Björn-Egil Dahlberg | |
2016-12-16 | stdlib: Add start options to gen_event | Björn-Egil Dahlberg | |
* New gen_event:start/2 and gen_event:start_link/2 * Extend gen_event:start/1 and gen_event:start_link/1 to handle an option list as input. The options to gen_event are the same as to gen_server. | |||
2016-12-16 | stdlib: Remove whitespace errors in gen_event | Björn-Egil Dahlberg | |
2016-12-16 | Merge branch 'maint' | Sverker Eriksson | |
2016-12-16 | Merge branch 'sverker/cuddle-code_SUITE-versions' into maint | Sverker Eriksson | |
* sverker/cuddle-code_SUITE-versions: erts: Fix hanging race in code_SUITE:versions | |||
2016-12-16 | Merge branch 'maint' | Sverker Eriksson | |
2016-12-16 | Merge pull request #1270 from kostis/hipe-test | Sverker Eriksson | |
hipe: one more test file and some cleanups | |||
2016-12-16 | Merge branch 'maint' | Björn Gustavsson | |
* maint: Allow escripts with only two lines Add project-wide Emacs settings file | |||
2016-12-16 | Merge pull request #1279 from legoscia/emacs-dir-locals | Björn Gustavsson | |
Add project-wide Emacs settings file | |||
2016-12-16 | Merge pull request #1275 from pjhades/fix/escript | Björn Gustavsson | |
Allow escripts with only two lines OTP-14098 | |||
2016-12-16 | Merge branch 'maint' | Hans Nilsson | |
2016-12-16 | Merge branch 'hans/eldap/cover_spec' into maint | Hans Nilsson | |
2016-12-16 | Merge branch 'maint' | Ingela Anderton Andin | |
2016-12-16 | Merge branch 'ingela/inets/httpc-redirect-host-header/ERL-316/OTP-14097' ↵ | Ingela Anderton Andin | |
into maint * ingela/inets/httpc-redirect-host-header/ERL-316/OTP-14097: inets: httpc - Correct redirection host header | |||
2016-12-16 | Merge branch 'maint' | Ingela Anderton Andin | |
2016-12-16 | Merge branch 'ingela/inets/httpc-PATCH-doc' into maint | Ingela Anderton Andin | |
* ingela/inets/httpc-PATCH-doc: inets: httpc - patch method missing in doc | |||
2016-12-15 | Merge branch 'maint' | Hans Nilsson | |
2016-12-15 | Merge branch 'hans/ssh/cuddle_tests' into maint | Hans Nilsson | |