Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-11-01 | Merge branch 'maint' | Ingela Anderton Andin | |
2017-11-01 | Merge branch 'ingela/inets/httpd-location/OTP-14716' into maint | Ingela Anderton Andin | |
* ingela/inets/httpd-location/OTP-14716: inets: httpd - do not hardcode 302 status for location | |||
2017-11-01 | Merge branch 'maint' | Hans Nilsson | |
2017-11-01 | Merge branch 'hans/crypto/DH_generate_parameters_deprecated/OTP-14639' into ↵ | Hans Nilsson | |
maint | |||
2017-11-01 | Merge branch 'hans/crypto/returnvalue_from_void/OTP-14720' into maint | Hans Nilsson | |
2017-11-01 | crypto: replaced deprecated DH_generate_parameters | Hans Nilsson | |
2017-11-01 | crypto: Remove returnvalue from void C-fn | Hans Nilsson | |
2017-10-31 | Merge branch 'maint' | Hans Nilsson | |
2017-10-31 | Merge branch 'hans/ssh/check_host_user_keys/OTP-14676' into maint | Hans Nilsson | |
2017-10-31 | inets: httpd - do not hardcode 302 status for location | Ingela Anderton Andin | |
If a status code is provide by the ESI script that status code should have precedence over internal defaults. Also remove RFC 2616 requirement that URI must be absolute, that requirement is relaxed by RFC 7231. | |||
2017-10-31 | Merge branch 'maint' | Hans Bolinder | |
* maint: stdlib: Fix a minor issue with the qlc suite | |||
2017-10-31 | Merge branch 'hasse/stdlib/fix_qlc_SUITE' into maint | Hans Bolinder | |
* hasse/stdlib/fix_qlc_SUITE: stdlib: Fix a minor issue with the qlc suite | |||
2017-10-31 | Merge branch 'maint' | Ingela Anderton Andin | |
2017-10-31 | Merge branch 'ingela/snmp/crypto-tests' into maint | Ingela Anderton Andin | |
* ingela/snmp/crypto-tests: snmp: Add crypto precondition test | |||
2017-10-30 | Merge branch 'lukas/erts/misc_fixes' | Lukas Larsson | |
* lukas/erts/misc_fixes: erts: Fix a bunch of compiler warnings kernel: Fix gen_tcp_misc indentation erts: Fail port_SUITE:huge_env if error code > 127 erts: Add lcnt prototype for dist locks update | |||
2017-10-30 | erts: Fix a bunch of compiler warnings | Lukas Larsson | |
2017-10-30 | Merge branch 'lukas/erts/fix_no_dot_makefile_dep/OTP-14439' | Lukas Larsson | |
* lukas/erts/fix_no_dot_makefile_dep/OTP-14439: erts: missing makefile dependency | |||
2017-10-30 | erts: missing makefile dependency | John Högberg | |
2017-10-30 | Merge branch 'lukas/erts/pgo/OTP-14604' | Lukas Larsson | |
* lukas/erts/pgo/OTP-14604: erts: Only do PGO if gcc supports -fprofile-correction | |||
2017-10-30 | stdlib: Fix a minor issue with the qlc suite | Hans Bolinder | |
When comparing the process dictionary before and after a test, only (a sorted list of) qlc keys are compared. | |||
2017-10-30 | ssh: Fix testcase failures caused by better key checks | Hans Nilsson | |
2017-10-30 | ssh: Testcase with ecdsa hostkey placed in rsa files | Hans Nilsson | |
2017-10-30 | ssh: Client checks user's public key | Hans Nilsson | |
2017-10-30 | ssh: Server checks host key files at start and at accept | Hans Nilsson | |
2017-10-30 | ssh: Sharpen the PubKey validity check | Hans Nilsson | |
2017-10-30 | Merge pull request #1610 from bjorng/bjorn/erts/is_builtin/ERL-500/OTP-14713 | Björn Gustavsson | |
Correct erlang:is_builtin/3 for apply/2 and yield/0 | |||
2017-10-30 | Update primary bootstrap | Björn Gustavsson | |
2017-10-30 | Merge branch 'bjorn/compiler/eliminate-v3_life/OTP-14712' | Björn Gustavsson | |
* bjorn/compiler/eliminate-v3_life/OTP-14712: Eliminate the v3_life pass | |||
2017-10-30 | Merge branch 'maint' | Björn Gustavsson | |
* maint: erl_process_dump: Don't assume that literals can be found Remove one superfluous closing parenthesis in oam_intro.xml | |||
2017-10-30 | Merge branch 'bjorn/improve-crash-dumps/OTP-14685' into maint | Björn Gustavsson | |
* bjorn/improve-crash-dumps/OTP-14685: erl_process_dump: Don't assume that literals can be found | |||
2017-10-30 | erl_process_dump: Don't assume that literals can be found | Björn Gustavsson | |
Native code does not register its literals in the code header for the loaded code. Therefore, a literal created by native code can not be found by mark_literal(). Ignore literals that can't be found instead of crashing (the crasdump_viewer will report such literals as incomplete heap data, but will not crash). | |||
2017-10-30 | Merge pull request #1612 from ↵ | Rickard Green | |
bitnitdit/bitnitdit/oam_intro-superfluous-closing-parenthesis Remove one superfluous closing parenthesis in oam_intro.xml | |||
2017-10-29 | Remove one superfluous closing parenthesis in oam_intro.xml | bitnitdit | |
2017-10-27 | Merge branch 'lukas/erts/gc-docs' | Lukas Larsson | |
* lukas/erts/gc-docs: erts: Add Garbage Collection internal docs | |||
2017-10-27 | erts: Add Garbage Collection internal docs | Lukas Larsson | |
2017-10-27 | snmp: Add crypto precondition test | Ingela Anderton Andin | |
2017-10-27 | Merge branch 'maint' | Ingela Anderton Andin | |
2017-10-27 | Merge branch 'ingela/public_key-test' into maint | Ingela Anderton Andin | |
* ingela/public_key-test: public_key: Check that ec curve used for test is supported | |||
2017-10-27 | Correct erlang:is_builtin/3 for apply/2 and yield/0 | Björn Gustavsson | |
erlang:is_builtin(erlang, M, F) returns false for apply/2 and yield/0. The documentation for erlang:is_builtin/3 says that it returns true for BIFs that are implemented in C. apply/2 and yield/0 are implemented in C (as BEAM instructions), and therefore the correct return value is true. Also see a similar argument that was made for apply/3 in the past: http://erlang.org/pipermail/erlang-bugs/2015-October/005101.html https://bugs.erlang.org/browse/ERL-500 | |||
2017-10-27 | Merge branch 'maint' | Ingela Anderton Andin | |
2017-10-27 | Merge branch 'ingela/inets/ERL-455/OTP-14716' into maint | Ingela Anderton Andin | |
* ingela/inets/ERL-455/OTP-14716: inets: Correct guard test | |||
2017-10-27 | Eliminate the v3_life pass | Björn Gustavsson | |
The v3_life pass does not do enough to be worth being its own pass. Essentially it does two things: * Calculates life-time information starting from the annotations that v3_kernel provides. That part can be moved into v3_codegen. * Rewrites the Kernel Erlang records to similar plain tuples (for example, #k_cons{hd=Hd,tl=Tl} is rewritten to {cons,Hd,Tl}). That rewriting is not needed and can be eliminated. | |||
2017-10-26 | inets: Correct guard test | Ingela Anderton Andin | |
Guard test for error case was not updated to handle httpc stream concept properly. | |||
2017-10-26 | public_key: Check that ec curve used for test is supported | Ingela Anderton Andin | |
2017-10-26 | Merge branch 'maint' | Ingela Anderton Andin | |
2017-10-26 | Merge branch 'ingela/inets/not-chunked-esi/OTP-14656' into maint | Ingela Anderton Andin | |
* ingela/inets/not-chunked-esi/OTP-14656: inets: httpd - Fix broken handling of POST requests | |||
2017-10-25 | Merge branch 'maint' | Hans Bolinder | |
* maint: parsetools: Fix unused functions warnings in leexinc.hrl | |||
2017-10-25 | Merge branch 'hasse/parsetools/unused_funcs_leexinc/ERL-497/OTP-14697' into ↵ | Hans Bolinder | |
maint * hasse/parsetools/unused_funcs_leexinc/ERL-497/OTP-14697: parsetools: Fix unused functions warnings in leexinc.hrl | |||
2017-10-25 | Merge branch 'maint' | Ingela Anderton Andin | |
2017-10-25 | Merge branch 'ingela/inets/http-sync-close/OTP-14696' into maint | Ingela Anderton Andin | |
* ingela/inets/http-sync-close/OTP-14696: inets: Make sure httpd:stop_service is synchronous |