Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-01-09 | stdlib: Improve erl_eval's stacktraces | Hans Bolinder | |
The call "erlang:get_stacktrace()" is not handled explicitly. If there are issues, they can probably be ignored since erlang:get_stacktrace/1 will be deprecated and removed. | |||
2018-01-09 | Merge branch 'maint' | Siri Hansen | |
2018-01-09 | Merge branch 'siri/etop/include/ERL-534/OTP-14842' into maint | Siri Hansen | |
* siri/etop/include/ERL-534/OTP-14842: [observer] Use include_lib instead of include with relative path Add runtime_tools/include to tertiary bootstrap | |||
2018-01-09 | Merge branch 'maint' | Hans Bolinder | |
* maint: dialyzer: Correct handling of erlang:abs/1 | |||
2018-01-09 | Merge branch 'hasse/dialyzer/fix_abs/OTP-14858/ERL-551' into maint | Hans Bolinder | |
* hasse/dialyzer/fix_abs/OTP-14858/ERL-551: dialyzer: Correct handling of erlang:abs/1 | |||
2018-01-09 | Merge branch 'maint' | Siri Hansen | |
2018-01-09 | Merge branch 'siri/cdv/crash-when-truncated-in-mod-attr/ERL-537/OTP-14846' ↵ | Siri Hansen | |
into maint * siri/cdv/crash-when-truncated-in-mod-attr/ERL-537/OTP-14846: [cdv] Don't crash when dump is truncated in module attributes | |||
2018-01-09 | Merge branch 'maint' | Ingela Anderton Andin | |
2018-01-09 | Merge branch 'ingela/dtls/test-cuddle' into maint | Ingela Anderton Andin | |
* ingela/dtls/test-cuddle: dtls: Filter out rc4 for DTLS psk suites dtls: We do not need to wait for DTLS over UDP server | |||
2018-01-08 | dialyzer: Correct handling of erlang:abs/1 | Hans Bolinder | |
See also https://bugs.erlang.org/browse/ERL-551. | |||
2018-01-08 | Merge branch 'john/erts/putenv-thread-safety/OTP-14666' | John Högberg | |
2018-01-08 | Merge branch 'maint' | John Högberg | |
2018-01-08 | Merge pull request #1662 from bjorng/bjorn/compiler/beam_utils | Björn Gustavsson | |
Reduce register shuffling in receive clauses | |||
2018-01-07 | dtls: Filter out rc4 for DTLS psk suites | Ingela Anderton Andin | |
Stream ciphers are not valid fro DTLS | |||
2018-01-06 | dtls: We do not need to wait for DTLS over UDP server | Ingela Anderton Andin | |
Client will retransmit until server becomes responsive | |||
2018-01-04 | Remove unsafe is_record/test_arity optimizations | John Högberg | |
The type optimizations for is_record and test_arity checked whether the arity was equal to the size stored in the type information, which is incorrect since said size is the *minimum* size of the tuple (as determined by previous instructions) and not its exact size. A future patch to the 'master' branch will restore these optimizations in a safe manner. | |||
2018-01-04 | Merge branch 'maint' | Ingela Anderton Andin | |
Conflicts: lib/ssl/src/tls_connection.erl | |||
2018-01-04 | Merge branch 'ingela/ssl/error-handling-race/ERL-539/OTP-14852' into maint | Ingela Anderton Andin | |
* ingela/ssl/error-handling-race/ERL-539/OTP-14852: ssl: Prevent error handling race condition | |||
2018-01-04 | ssl: Prevent error handling race condition | Ingela Anderton Andin | |
ERL-539 | |||
2018-01-03 | Merge branch 'maint' | Sverker Eriksson | |
2018-01-03 | Merge PR-1664 from sverker/sverker/hipe-bs_put_utf8-gc-bug OTP-14850 | Sverker Eriksson | |
Fix GC bug for HiPE primop bs_put_utf8 | |||
2018-01-03 | Fix bug in hipe primop bs_put_utf8 | Sverker Eriksson | |
by preventing it from doing GC, which generated code relies on. | |||
2018-01-03 | [cdv] Don't crash when dump is truncated in module attributes | Siri Hansen | |
This bug was introduced by commit 3b964e8dbaa0cd73ca7a983b3ce948e0dbd2c35c | |||
2018-01-03 | Disallow NULs in filename-encoded strings | John Högberg | |
Previously we accepted trailing NULs, which was backwards compatible as such usage never resulted in misbehavior in the first place. The downside is that it prevented erts_native_filename_need from returning an accurate number of *actual characters*, needlessly complicating encoding-agnostic code like erts_osenv. | |||
2018-01-03 | Replace the libc environment with a thread-safe emulation | John Högberg | |
putenv(3) and friends aren't thread-safe regardless of how you slice it; a global lock around all environment operations (like before) keeps things safe as far as our own operations go, but we have absolutely no control over what libc or a library dragged in by a driver/NIF does -- they're free to call getenv(3) or putenv(3) without honoring our lock. This commit solves this by setting up an "emulated" environment which can't be touched without going through our interfaces. Third-party libraries can still shoot themselves in the foot but benign uses of os:putenv/2 will no longer risk crashing the emulator. | |||
2017-12-22 | Merge branch 'maint' | Hans Nilsson | |
* maint: ssh: ssh_dbg updates ssh: Better reports in some test case failures ssh: Tests - timeout catches external ssh that does not disconnect | |||
2017-12-22 | Merge branch 'hans/ssh/cuddle_ssh_test' into maint | Hans Nilsson | |
* hans/ssh/cuddle_ssh_test: ssh: Better reports in some test case failures ssh: Tests - timeout catches external ssh that does not disconnect | |||
2017-12-22 | Merge branch 'hans/ssh/cuddle_ssh_dbg' into maint | Hans Nilsson | |
* hans/ssh/cuddle_ssh_dbg: ssh: ssh_dbg updates | |||
2017-12-22 | Merge branch 'maint' | Hans Bolinder | |
* maint: tools: Correct a counting bug in Cover | |||
2017-12-22 | Merge branch 'hasse/cover/fix_counting/OTP-14817/PR-1641' into maint | Hans Bolinder | |
* hasse/cover/fix_counting/OTP-14817/PR-1641: tools: Correct a counting bug in Cover | |||
2017-12-21 | Merge branch 'maint' | Ingela Anderton Andin | |
2017-12-21 | Merge remote-tracking branch 'origin/ingela/inets/remove-legacy-test-suite' ↵ | Ingela Anderton Andin | |
into maint * origin/ingela/inets/remove-legacy-test-suite: inets: Remove old legacy SUITE | |||
2017-12-21 | ssh: ssh_dbg updates | Hans Nilsson | |
2017-12-21 | ssh: Better reports in some test case failures | Hans Nilsson | |
2017-12-21 | ssh: Tests - timeout catches external ssh that does not disconnect | Hans Nilsson | |
2017-12-21 | tools: Correct a counting bug in Cover | Hans Bolinder | |
See also PR #1641, https://github.com/erlang/otp/pull/1641. The bug was introduced in commit ab435488a (Erlang/OTP 18). | |||
2017-12-21 | Merge branch 'maint' | Sverker Eriksson | |
2017-12-21 | Merge branch 'sverker/cuddle-valgrind' into maint | Sverker Eriksson | |
2017-12-21 | Merge branch 'hasse/stdlib/gen_server_bench' | Hans Bolinder | |
* hasse/stdlib/gen_server_bench: stdlib: Optimize gen a little stdlib: Introduce gen_server benchmark | |||
2017-12-21 | vladdu/jinterface_java9/PR-1657/OTP-14844 | Lukas Larsson | |
jinterface: add package name for Java 9 | |||
2017-12-21 | Merge pull request #1651 from getong/doc_update | Lukas Larsson | |
false should be never, false not found in the source code | |||
2017-12-20 | Merge branch 'raimo/ssl-dist-bench/OTP-14657' | Raimo Niskanen | |
* raimo/ssl-dist-bench/OTP-14657: Skip ssl_bench_SUITE, normally | |||
2017-12-20 | inets: Remove old legacy SUITE | Ingela Anderton Andin | |
2017-12-20 | stdlib: Optimize gen a little | Hans Bolinder | |
2017-12-20 | stdlib: Introduce gen_server benchmark | Hans Bolinder | |
2017-12-20 | [observer] Use include_lib instead of include with relative path | Siri Hansen | |
2017-12-20 | Merge branch 'maint' | Ingela Anderton Andin | |
2017-12-20 | dtls: Add handling of lost key exchange in cipher state | Ingela Anderton Andin | |
2017-12-20 | ssl: Correct DTLS client close handling | Ingela Anderton Andin | |
2017-12-20 | Merge branch 'maint' | Ingela Anderton Andin | |