Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-02-24 | Unify whitespace in XML doc | Raimo Niskanen | |
2016-02-24 | Ditch PrevState | Raimo Niskanen | |
StateName/4 -> StateName/3 handle_event/5 -> handle_event/4 | |||
2016-02-24 | Make first next_event in list arrive first | Raimo Niskanen | |
Define options as actions that set options, rework the documentation about this. | |||
2016-02-24 | Ditch State so StateName/5 -> StateName/4 | Raimo Niskanen | |
2016-02-23 | Add {stop_and_reply,Reason,Replies [,Data]) | Raimo Niskanen | |
Cleanup some error handling | |||
2016-02-23 | Rename Client -> Caller | Raimo Niskanen | |
2016-02-22 | Make callback_option() mandatory | Raimo Niskanen | |
2016-02-19 | Hide Data in default format_status/2 if callback crashes | Raimo Niskanen | |
2016-02-19 | Update terminology to data(), transition_op(), etc | Raimo Niskanen | |
2016-02-19 | Write gen_statem with code font in the docs | Raimo Niskanen | |
2016-02-19 | Shorten taglists in the documentation | Raimo Niskanen | |
2016-02-19 | Add reply([Reply]) | Raimo Niskanen | |
2016-02-19 | Add {keep_state,...} and {keep_state_and_data,...} | Raimo Niskanen | |
2016-02-18 | Change initial PrevState to 'undefined' | Raimo Niskanen | |
2016-02-18 | Write some convenience helpers | Raimo Niskanen | |
2016-02-18 | Rename retry -> postpone | Raimo Niskanen | |
2016-02-18 | Rename insert_event -> next_event | Raimo Niskanen | |
2016-02-18 | Implement option callback_mode | Raimo Niskanen | |
2016-02-16 | Change to {next_state,...} and {stop,...} return format | Raimo Niskanen | |
2016-02-09 | Correct grammar errors found by Magnus Henoch | Raimo Niskanen | |
2016-02-09 | New state machine | Raimo Niskanen | |
2015-12-15 | Update release notes | Erlang/OTP | |
2015-11-20 | Merge branch 'riverrun/maint' into maint | Zandra | |
* riverrun/maint: Recommend against using crypto:rand_bytes | |||
2015-11-06 | Recommend against using crypto:rand_bytes | David Whitlock | |
2015-11-04 | Fix typos and grammar | Derek Brown | |
2015-11-04 | [stdlib] Correct documentation | Hans Bolinder | |
Fix mistakes found by 'xmllint'. | |||
2015-11-03 | Fix spelling error in "characters_to_list" | Gary Coulbourne | |
2015-10-22 | beam_lib: Document all_chunks/1 and build_module/1 | Björn Gustavsson | |
beam_lib:all_chunks/1 and beam_lib:build_module/1 can be useful for special-purpose stripping, for example to remove the "Line" chunk. | |||
2015-10-13 | Fixed typo in ets documentation | Riccardo | |
2015-09-21 | Prepare release | Erlang/OTP | |
2015-09-10 | Fix doc for return value of gen_fsm:reply/2 | Siri Hansen | |
2015-09-07 | proc_lib: Add format/3 | Björn Gustavsson | |
We'll need a way to limit the size of the crash report produced by proc_lib:format(). Add format/3, where the third argument is a depth argument. | |||
2015-07-14 | Fix function reference (no first/2 in ets) | Attila Gulyas | |
2015-06-23 | Prepare release | Erlang/OTP | |
2015-06-18 | Change license text to APLv2 | Bruce Yinhe | |
2015-06-16 | Merge branch 'mhssler/doc-os-unsetenv-unicode' | Henrik Nord | |
* mhssler/doc-os-unsetenv-unicode: stdlib: Document os:unsetenv Unicode support | |||
2015-06-15 | dialyzer: Modify the handling of parametrized opaque types | Hans Bolinder | |
In OTP 17 it is possible to mix types such as dict:dict() and dict:dict(_, _) outside of the dict module (and similarly for some other opaque types in STDLIB), but the results are unfortunately possibly invalid warnings in users' code. In OTP 18 parameterized opaque types with the same name but with different number of parameters are no longer compatible when seen from outside of the module where the types are declared. The types in STDLIB have been updated accordingly; for instance -opaque dict() :: dict(_, _). has been replaced by -type dict() :: dict(_, _). | |||
2015-06-03 | Break out assert macros from eunit to stdlib assert.hrl | Richard Carlsson | |
Several people have requested that the assert macros in EUnit should be moved out to a separate header file. This patch puts them in stdlib/include/assert.hrl, which gets included by the eunit.hrl file. Thus, nothing changes for eunit users, but the asserts can now also be included separately. | |||
2015-05-29 | Merge branch 'fishcakez/supervisor_ignore' | Zandra Hird | |
* fishcakez/supervisor_ignore: Don't store child that returns ignore in simple supervisor OTP-12793 | |||
2015-05-29 | Update orddict with parameterized types and specs | UENISHI Kota | |
With parametrized types and specs, modules using orddict can be statically checked with dialyzer. Although orddict have not been builtin types, it is good and more natural to have its exported types and specs aligned to builtin types. | |||
2015-05-26 | Don't store child that returns ignore in simple supervisor | James Fish | |
If a child of a simple_one_for_one returns ignore from its start function no longer store the child for any restart type. It is not possible to restart or delete the child because the supervisor is a simple_one_for_one. Previously a simple_one_for_one would crash, potentially without shutting down all of its children, when it tried to shutdown a child with undefined pid. Previous only one undefined pid child was stored in a simple_one_for_one supervisor no matter how many times the child start function returned ignore. | |||
2015-05-21 | Merge branch 'sverk/ets-tab2file-syn/OTP-12737' | Sverker Eriksson | |
* sverk/ets-tab2file-syn/OTP-12737: stdlib: Add 'sync' option to ets:tab2file/3 | |||
2015-05-21 | stdlib: Document os:unsetenv Unicode support | Martin Hässler | |
Document that os:unsetenv/1 handles Unicode in the same way as os:getenv and os:putenv. | |||
2015-05-20 | Merge branch 'richcarl/add-uptime-function' | Henrik Nord | |
* richcarl/add-uptime-function: Add uptime() shell command OTP-12752 | |||
2015-05-18 | stdlib: Document maps:filter/2 | Björn-Egil Dahlberg | |
2015-05-18 | stdlib: Add gb_sets:iterator_from | Hans Bolinder | |
2015-05-18 | stdlib: Add gb_trees:iterator_from | beaver | |
2015-05-13 | stdlib: Add 'sync' option to ets:tab2file/3 | Sverker Eriksson | |
to improve the chance of some real disk persistence before tab2file returns. | |||
2015-05-13 | Revert "Prepare release" | Henrik Nord | |
This reverts commit e09dd66dc4d89c62ddfd8c19791f9678d5d787c6. | |||
2015-05-12 | Prepare release | Erlang/OTP | |