Age | Commit message (Collapse) | Author |
|
* peterdmv/ssl/suite_to_str/ERL-600/OTP-15106:
ssl: Add new API function suite_to_str/1
Change-Id: Icf214ece4e1d281da12b02dadc63d4a2ca346563
|
|
* sverker/process-info-exiting:
erts: Fix incoming signal handling for exiting process
|
|
Add new API function for converting cipher suite maps
to their textual representation.
Change-Id: I43681930b38e0f3bdb4dfccbf9e8895aa2d6a281
|
|
Seen symptom:
handle_process_info() called with is_alive=1 on exiting process,
reading broken Process.u.initial.module atom
overwritten by Process.u.terminate pointer.
Solution:
Let erts_proc_sig_handle_incoming() do nothing if process is
already exiting.
|
|
Add how-to for cross compilation to Raspberry Pi 3
|
|
* raimo/snmp/parse-mc_new_type-first-master/ERIERL-161/OTP-14196:
Add test case
Parse #mc_new_type{}s before definitions_loop/2
|
|
Fix use-after-free on Windows in escript
|
|
* hasse/edoc/fix_map_type_layout/OTP-15117:
edoc, erl_docgen: Fix pretty-printing of type map()
|
|
* jl/sharpen-maps-tests/OTP-14012:
stdlib: Fix error reason for maps:with/without
Check for the overlap between maps and iterators
|
|
* lukas/kernel/logger-config/OTP-13295:
erts: Fix emulator log messages to use erlang:system_time
kernel: Add LOGGER_SERVER_TAG to logger_server
|
|
|
|
|
|
* hasse/stdlib/pP_with_no_line_breaks/OTP-15103/ERL-607:
kernel: Use ~0p
debugger: Use ~0p
common_test: Use ~0p
stdlib: Make pP insert no line breaks with field width zero
|
|
* hans/ssh/eddh_experimental/OTP-15097:
ssh: Add experimental eddh Not working
crypto: Add experimental x25519 and x448
crypto: Make 'curve' entry in crypto:supports() appear iff Curves is non-empty
crypto: Extend crypto:supports with 'curves'
|
|
Not working
|
|
Not to be used. Uses not yet released functions in OpenSSL 1.1.1-pre8-dev
|
|
|
|
"curves" in crypto:supports returns list of actually supported ec_curves
|
|
* hans/public_key/cuddle_tests:
public_key: Extend test case pkix_verify_hostname_subjAltName
|
|
* hans/ssh/cuddle_tests:
ssh: Fix client_sends_info_timing property test case
ssh: Add ssh/test/property_test dir to test releases
|
|
* hans/public_key/dialyzer:
public_key: Make dialyzer happy
|
|
* hans/public_key/new_moduli_file/OTP-15113:
public_key: Generated new moduli file
|
|
|
|
* raimo/better-TLS-distribution/OTP-15058:
Test nodename whitelist
Use public_key to verify client hostname
|
|
Complex types including map() are now pretty-printed.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* ingela/ssl/verify-hostname-customize/OTP-15102:
ssl: Add option customize_hostname_check
|
|
|
|
* hasse/common_test/remove_edoc_comments:
common_test: Remove EDoc comments in internal modules
common_test: Remove EDoc documentation in internal modules
common_test: Remove EDoc documentation in public modules
|
|
* hasse/eliminate_lib_module/OTP-15072/ERL-634:
stdlib: Move eval_str/1 from mod_esi to erl_eval
|
|
* sverker/ets-auto-unfix-delete-race/OTP-15109:
erts: Fix race between ets table deletion and auto-unfix
|
|
Bug exists since ets-refs were introduced in 20.0
0d6dc895744c34c9c52fd42f4801a8a941864ae3.
Problem:
1. Process A fixates table T.
2. Process B starts deleting table T (either by ets:delete or exit)
and does tid_clear().
3. Process A exits and does proc_cleanup_fixed_table()
and get NULL from btid2tab() and deallocates DbFixation.
4. Process B continues deleting table in free_fixations_locked()
and finds the deallocated DbFixation in the fixing_procs tree.
Solution:
Wait with tid_clear() until after free_fixations_locked()
has traversed the fixing_procs tree.
|
|
|
|
|
|
|
|
|
|
Revert "Run the sharing optimisation in beam_jump until fixpoint"
|
|
Fix name capture problem in sys_core_fold
OTP-15115
|
|
See also https://bugs.erlang.org/browse/ERL-634.
The utility program `erl_call' in erl_interface used to call
lib:eval_str/1, which is no longer present in Erlang/OTP 21.0.
The lib module was eliminated in OTP-15072, see also
https://github.com/erlang/otp/pull/1786.
|
|
* hans/ssh/cuddle_doc:
ssh: Document default algorithm order + update SSH_app links
|
|
|
|
|
|
|
|
See also https://bugs.erlang.org/browse/ERL-607.
A zero field width used to insert line breaks "everywhere", but with
this patch no line breaks are inserted.
|
|
|