Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-11-04 | [crypto] Remove depricated functions | Lars Thorsen | |
2016-11-03 | Merge branch 'maint' (dummy merge) | Sverker Eriksson | |
2016-11-03 | Merge branch 'sverker/kernel-erts-dependency/OTP-14003' into maint | Sverker Eriksson | |
* sverker/kernel-erts-dependency: kernel: Add lost dependency to erts-8.1 | |||
2016-11-03 | Merge branch 'gandrade/fmod/PR-1216/OTP-14000' | Björn Gustavsson | |
* gandrade/fmod/PR-1216/OTP-14000: Add test cases for math:fmod/2 BIF Support math:fmod/2 BIF on compiler Add math:fmod/2 BIF | |||
2016-11-02 | Add test cases for math:fmod/2 BIF | Guilherme Andrade | |
2016-11-02 | Support math:fmod/2 BIF on compiler | Guilherme Andrade | |
2016-11-02 | Add math:fmod/2 BIF | Guilherme Andrade | |
Returns the (floating point) remainder of first argument divided by second argument. | |||
2016-11-02 | Merge branch 'sverker/hipe-load_nif-error/OTP-14002' | Sverker Eriksson | |
2016-11-02 | Merge branch 'kostis/aarch64-ignore' | Björn Gustavsson | |
* kostis/aarch64-ignore: Ignore generated dirs of one more configutation | |||
2016-11-02 | Merge branch 'essen/stdlib/proc_lib-propagate-exceptions/PR-1088/OTP-14001' | Björn Gustavsson | |
* essen/stdlib/proc_lib-propagate-exceptions/PR-1088/OTP-14001: Propagate exceptions fully when using proc_lib | |||
2016-11-02 | Merge branch 'maint' | Björn-Egil Dahlberg | |
2016-11-02 | Merge branch 'okeuday/howto/verify_beams_info/ERL-288/PR-1231/OTP-13999' ↵ | Björn-Egil Dahlberg | |
into maint * okeuday/howto/verify_beams_info/ERL-288/PR-1231/OTP-13999: Add otp_build update_primary to HOWTO INSTALL | |||
2016-11-02 | Merge branch 'maint' | Hans Bolinder | |
* maint: Update preloaded erts: Correct type declaration of match specification head Conflicts: erts/preloaded/ebin/erlang.beam erts/preloaded/ebin/erts_internal.beam | |||
2016-11-02 | Merge branch 'hasse/erts/fix_match_spec_head/OTP-13996' into maint | Hans Bolinder | |
* hasse/erts/fix_match_spec_head/OTP-13996: Update preloaded erts: Correct type declaration of match specification head | |||
2016-11-02 | Merge branch 'maint' | Lukas Larsson | |
2016-11-02 | Merge branch 'roadrunnr/tools/fprof-send-non-exist/PR-1201/OTP-13998' into maint | Lukas Larsson | |
* roadrunnr/tools/fprof-send-non-exist/PR-1201/OTP-13998: handle send_to_non_existing_process trace event in fprof | |||
2016-11-01 | Add otp_build update_primary to HOWTO INSTALL | Michael Truog | |
Document the existence of the otp_build update_primary command, to verify that the bootstrap beam files match the source files. | |||
2016-11-01 | Merge branch 'maint' | Ingela Anderton Andin | |
2016-11-01 | Merge remote-tracking branch 'github/pr/1219' into maint | Ingela Anderton Andin | |
* github/pr/1219: Correct spelling error in ssl_distribution.xml | |||
2016-11-01 | Ignore generated dirs of one more configutation | Kostis Sagonas | |
2016-11-01 | Merge branch 'maint' | Hans Nilsson | |
2016-11-01 | Merge branch 'hans/ssh/cuddle_tests_maint' into maint | Hans Nilsson | |
2016-11-01 | erts: Add notsup error for load_nif/2 from hipe code | Sverker Eriksson | |
2016-11-01 | Update preloaded | Hans Bolinder | |
2016-11-01 | erts: Correct type declaration of match specification head | Hans Bolinder | |
Bug reported by Peti Gömöri <[email protected]>. | |||
2016-11-01 | Merge branch 'maint' | Björn-Egil Dahlberg | |
2016-11-01 | Merge branch 'josevalim/erts/document-epmd-switches/PR-1217/OTP-13994' into ↵ | Björn-Egil Dahlberg | |
maint * josevalim/erts/document-epmd-switches/PR-1217/OTP-13994: Document the -epmd_module switch in erl | |||
2016-10-31 | Merge branch 'sverker/hipe-fun-purge' | Sverker Eriksson | |
2016-10-31 | kernel: Add lost dependency to erts-8.1 | Sverker Eriksson | |
In OTP-19.1 (c70ca686fe269db6079a2ca1c7e09cdfc0cfa903) erts_code_purger:finish_after_on_load/2 was added and called by code_server.erl. | |||
2016-10-31 | Merge branch 'maint' (dummy merge) | Sverker Eriksson | |
2016-10-31 | Merge branch 'sverker/hipe-beam-stacktrace/ERL-205/OTP-13992' into maint | Sverker Eriksson | |
* sverker/hipe-beam-stacktrace/ERL-205: erts: Exclude random beam functions from hipe stacktrace | |||
2016-10-31 | Propagate exceptions fully when using proc_lib | Loïc Hoguin | |
This makes proc_lib behaves like a normal process as far as the propagation of exceptions is concerned. Before this commit, the following difference could be observed: 6> spawn_link(fun() -> ssl:send(a,b) end). <0.43.0> 7> flush(). Shell got {'EXIT',<0.43.0>, {function_clause, [{ssl,send,[a,b],[{file,"..."},{line,275}]}]}} ok 8> proc_lib:spawn_link(fun() -> ssl:send(a,b) end). <0.46.0> 9> flush(). Shell got {'EXIT',<0.46.0>,function_clause} After this commit, we get the following instead: 3> flush(). Shell got {'EXIT',<0.61.0>, {function_clause, [{ssl,send,[a,b],[{file,"..."},{line,275}]}, {proc_lib,init_p,3,[{file,"..."},{line,232}]}]}} The stacktrace will show minor differences of course but the form is now the same as without proc_lib. The rationale behind this commit is that: * We now have a single form regardless of how the process was started * We can use the stacktrace to programmatically alter behavior (for example an HTTP server identifying problems in input decoding to send back a generic 400, or a 500 otherwise) * We can access the stacktrace to print it somewhere (for example an HTTP server could send it back to the client when a debug mode is enabled) | |||
2016-10-31 | ssh: retry in ssh_options_SUITE:ssh_connect_negtimeout_* | Hans Nilsson | |
2016-10-31 | ssh: make test more precise in ssh_to_openssh_SUITE | Hans Nilsson | |
2016-10-31 | Merge branch 'maint' | Björn-Egil Dahlberg | |
2016-10-31 | Merge branch 'legoscia/kernel/clarify-permission-bits/PR-1204/OTP-13991' ↵ | Björn-Egil Dahlberg | |
into maint * legoscia/kernel/clarify-permission-bits/PR-1204/OTP-13991: Clarify permission bits in file.xml | |||
2016-10-31 | Merge branch 'maint' | Björn-Egil Dahlberg | |
2016-10-31 | Merge branch 't-richards/erts/fix-typos-erl_driver/PR-1221/OTP-13990' into maint | Björn-Egil Dahlberg | |
* t-richards/erts/fix-typos-erl_driver/PR-1221/OTP-13990: Fix typos in erl_driver.xml | |||
2016-10-31 | Merge branch 'maint' | Björn-Egil Dahlberg | |
2016-10-31 | Merge branch 'egil/mnesia/dont-tty-log-nodes' into maint | Björn-Egil Dahlberg | |
* egil/mnesia/dont-tty-log-nodes: mnesia: Don't show error_logger messages in tests | |||
2016-10-31 | ssh: simplify test in ssh_to_openssh_SUITE | Hans Nilsson | |
2016-10-31 | ssh: skip erlang_server_openssh_client_renegotiate test on non-unix | Hans Nilsson | |
2016-10-31 | Merge branch 'maint' | Hans Nilsson | |
2016-10-31 | Merge branch 'hans/eldap/docfixes' into maint | Hans Nilsson | |
2016-10-31 | Merge branch 'maint' | Hans Nilsson | |
2016-10-31 | Merge branch 'hans/ssh/cuddle_tests_maint' into maint | Hans Nilsson | |
2016-10-31 | ssh: Removed tracing in ssh_to_openssh_SUITE | Hans Nilsson | |
2016-10-28 | Document the -epmd_module switch in erl | José Valim | |
2016-10-28 | ssh: test for rekey with OpenSSH server | Hans Nilsson | |
2016-10-28 | ssh: move rekeying test to ssh_test_lib | Hans Nilsson | |