Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-02-12 | core_lib: Deprecate functions that are no longer used by the compiler | Björn Gustavsson | |
2015-02-05 | Update primary bootstrap | Björn Gustavsson | |
2015-02-05 | Merge branch 'maint' | Björn Gustavsson | |
* maint: Update primary bootstrap Correct unsafe optimization of '==' and '/=' Conflicts: bootstrap/lib/compiler/ebin/sys_core_fold.beam | |||
2015-02-05 | Update primary bootstrap | Björn Gustavsson | |
2015-02-03 | Merge branch 'maint' | Björn Gustavsson | |
* maint: Update primary bootstrap Be more careful about map patterns when evalutating element/2 Do not convert map patterns to map expressions Conflicts: bootstrap/lib/compiler/ebin/sys_core_fold.beam lib/compiler/test/match_SUITE.erl | |||
2015-02-03 | Update primary bootstrap | Björn Gustavsson | |
2015-01-29 | Update primary bootstrap | Björn Gustavsson | |
2015-01-21 | Update primary bootstrap | Björn Gustavsson | |
2015-01-21 | Merge branch 'maint' | Björn Gustavsson | |
* maint: Update primary bootstrap core_lib: Handle patterns in map values | |||
2015-01-21 | Update primary bootstrap | Björn Gustavsson | |
2015-01-16 | Merge branch 'maint' | Björn Gustavsson | |
* maint: Update primary bootstrap beam_bool: Correct live calculation for GC BIFs beam_bool: Correct indentation for try...catch sys_core_fold: Correct optimization of 'case' Conflicts: bootstrap/bin/start.boot bootstrap/bin/start_clean.boot bootstrap/lib/compiler/ebin/beam_asm.beam bootstrap/lib/stdlib/ebin/io_lib_pretty.beam | |||
2015-01-16 | Update primary bootstrap | Björn Gustavsson | |
2015-01-15 | Update primary bootstrap | Hans Bolinder | |
2015-01-12 | Update primary bootstrap | Björn Gustavsson | |
2014-12-09 | Update primary bootstrap | Marcus Arendt | |
2014-10-03 | Update primary bootstrap | Björn-Egil Dahlberg | |
2014-09-01 | Update primary bootstrap | Björn Gustavsson | |
2014-09-01 | Update primary bootstrap | Björn Gustavsson | |
2014-06-18 | Update primary bootstrap | Magnus Lidén | |
2014-05-05 | Merge branch 'essen/remove-pg' | Siri Hansen | |
* essen/remove-pg: Remove the pg module and related documentation OTP-11907 | |||
2014-04-29 | Update primary bootstrap | Hans Bolinder | |
2014-04-28 | Update primary bootstrap | Hans Bolinder | |
2014-04-28 | Introduce the attribute -optional_callbacks in the context of behaviours | Hans Bolinder | |
2014-04-26 | Remove the pg module and related documentation | Loïc Hoguin | |
This module has been marked experimental for more than 15 years, and has largely been superseded by the pg2 module from the kernel application. The original pg also has no tests and has not been updated in the last 15 years other than small maintenance edits (like adding specs or replacing pid/1 by is_pid/1). It is pretty unlikely that anyone uses it today and its presence is simply confusing as people should be using pg2 anyway. | |||
2014-04-04 | Update primary bootstrap | Björn-Egil Dahlberg | |
2014-03-26 | Update primary bootstrap | Björn Gustavsson | |
2014-03-21 | Update primary bootstrap | Siri Hansen | |
bootstrap/bin/start.boot bootstrap/bin/start_clean.boot | |||
2014-03-19 | Update primary bootstrap | Björn Gustavsson | |
2014-03-18 | Update primary bootstrap | Björn-Egil Dahlberg | |
2014-03-14 | Update primary bootstrap | Björn Gustavsson | |
2014-03-12 | Update primary bootstrap | Björn Gustavsson | |
2014-03-06 | Update primary bootstrap | Björn Gustavsson | |
2014-03-05 | Update primary bootstrap | Björn Gustavsson | |
2014-03-04 | Update primary bootstrap | Björn Gustavsson | |
2014-02-26 | Update preloaded and primary bootstrap | Rickard Green | |
2014-02-24 | Merge branch 'bjorn/asn1/deprecations/OTP-11731' | Björn Gustavsson | |
* bjorn/asn1/deprecations/OTP-11731: Remove or de-emphasize references to the deprecated asn1rt module Deprecate asn1 functions | |||
2014-02-23 | Deprecate pre-defined built-in types | Hans Bolinder | |
The types array(), dict(), digraph(), gb_set(), gb_tree(), queue(), set(), and tid() have been deprecated. They will be removed in OTP 18.0. Instead the types array:array(), dict:dict(), digraph:graph(), gb_set:set(), gb_tree:tree(), queue:queue(), sets:set(), and ets:tid() can be used. (Note: it has always been necessary to use ets:tid().) It is allowed in OTP 17.0 to locally re-define the types array(), dict(), and so on. New types array:array/1, dict:dict/2, gb_sets:set/1, gb_trees:tree/2, queue:queue/1, and sets:set/1 have been added. | |||
2014-02-21 | Deprecate asn1 functions | Björn Gustavsson | |
Those asn1 functions are no longer needed because they all have better alternatives. | |||
2014-02-19 | Update primary bootstrap | Björn Gustavsson | |
2014-02-13 | Update primary bootstrap | Björn Gustavsson | |
2014-02-06 | Update primary bootstrap | Björn Gustavsson | |
2014-01-29 | Update primary bootstrap | Björn-Egil Dahlberg | |
2014-01-28 | Update primary bootstrap | Björn-Egil Dahlberg | |
2014-01-20 | Update primary bootstrap | Björn Gustavsson | |
2013-12-18 | Update primary bootstrap | Björn Gustavsson | |
2013-12-12 | Update primary bootstrap for named funs in the shell | Anthony Ramine | |
2013-12-12 | Update primary bootstrap for named funs | Anthony Ramine | |
2013-12-07 | Merge branch 'rickard/garbage_collect/OTP-11388' | Rickard Green | |
* rickard/garbage_collect/OTP-11388: Parallel check_process_code when code_server purge a module Functionality for disabling garbage collection Use asynchronous check_process_code in code_parallel_SUITE Execution of system tasks in context of another process Conflicts: bootstrap/lib/kernel/ebin/hipe_unified_loader.beam erts/preloaded/ebin/erlang.beam erts/preloaded/ebin/erts_internal.beam | |||
2013-12-05 | Update primary bootstrap | Sverker Eriksson | |
2013-11-18 | Parallel check_process_code when code_server purge a module | Rickard Green | |
When the code_server is about to purge a module it will now issue asynchronous check_process_code requests to all processes at once instead of one at a time. These check_process_code operation can execute in parallel. |