Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-03-28 | Updated the appup also... | Micael Karlberg | |
2011-03-28 | Cosmetic prep for handling of domains in the config tool. | Micael Karlberg | |
2011-03-25 | Merge branch 'bmk/snmp/support_ipv6_transport_address' of github.com:bmk/otp ↵ | Micael Karlberg | |
into bmk/snmp/support_ipv6_transport_address | |||
2011-03-25 | Checking an taddress with domain snmpUDPDomain giv as a OID not handled. | Micael Karlberg | |
2011-03-25 | Merge branch 'dev' into bmk/snmp/support_ipv6_transport_address | Micael Karlberg | |
2011-03-25 | Merge branch 'bmk/snmp/support_ipv6_transport_address' of github.com:bmk/otp ↵ | Micael Karlberg | |
into bmk/snmp/support_ipv6_transport_address | |||
2011-03-25 | Merge branch 'dev' into bmk/snmp/support_ipv6_transport_address | Micael Karlberg | |
2011-03-25 | Merge branch 'pan/valgrind_xml_log' into dev | Patrik Nyblom | |
* pan/valgrind_xml_log: Make xml valgrind messages end up in xml log OTP-9079 | |||
2011-03-25 | Merge branch 'pan/tcp_send_timeout/OTP-9145' into dev | Patrik Nyblom | |
* pan/tcp_send_timeout/OTP-9145: Add testcase Teach tcp_recv not to cancel send timer | |||
2011-03-25 | Merge branch 'pan/system_info_procs_crash/OTP-9140' into dev | Patrik Nyblom | |
* pan/system_info_procs_crash/OTP-9140: Make erts_printf %T not recurse on C stack Corrected fd_driver and cleaned up some really old code in win32/sys.[ch] | |||
2011-03-25 | Merge branch 'pan/win_init_restart_oldshell/OTP-9139' into dev | Patrik Nyblom | |
* pan/win_init_restart_oldshell/OTP-9139: Add testcase Teach win32/sys.c (fd-driver) not to leak readers causing init:restart to fail Make Erlang build with Latest MS SDK, 7.1 (and VStudio 2010) | |||
2011-03-25 | Merge branch 'pan/tcp_send_timeout/OTP-9145' of super:pan_otp into ↵ | Patrik Nyblom | |
pan/valgrind_xml_log | |||
2011-03-25 | Merge branch 'ta/doc-fixes' into dev | Henrik Nord | |
* ta/doc-fixes: Fix two typos in erlsrv log messages Fix typo in epmd help Fix typo in binary:part/2 example Fix typos in efficiency guide erts: Fix doc typos, duplication and readability Fix inet:port/1 doc to match implementation/spec Fix typos in zip manpage | |||
2011-03-25 | Fix two typos in erlsrv log messages | Tuncer Ayaz | |
2011-03-25 | Fix typo in epmd help | Tuncer Ayaz | |
2011-03-25 | Fix typo in binary:part/2 example | Tuncer Ayaz | |
Reported-By: Pablo Platt | |||
2011-03-25 | Fix typos in efficiency guide | Tuncer Ayaz | |
2011-03-25 | erts: Fix doc typos, duplication and readability | Tuncer Ayaz | |
2011-03-25 | Fix inet:port/1 doc to match implementation/spec | Tuncer Ayaz | |
2011-03-25 | Fix typos in zip manpage | Tuncer Ayaz | |
2011-03-25 | Merge branch 'bw/tv-render-fix' into dev | Henrik Nord | |
* bw/tv-render-fix: tv: Allow table viewer to display refs, ports and small binaries OTP-9153 | |||
2011-03-25 | Merge branch 'bjorn/compiler/bin-size-bug/OTP-9134' into dev | Björn Gustavsson | |
* bjorn/compiler/bin-size-bug/OTP-9134: v3_core: Fix variable incorrectly unbound after binary match v3_core: Fix style and indentation | |||
2011-03-25 | Merge branch 'sg/fix-diskless-booted-relup' into dev | Siri Hansen | |
* sg/fix-diskless-booted-relup: Remove traces of release_handler reading from filesystem when it has Masters list OTP-9142 | |||
2011-03-24 | Merge branch 'cg/fix-sizeof-array-arg' into dev | Henrik Nord | |
* cg/fix-sizeof-array-arg: Fix using sizeof() for array given as function argument OTP-9151 | |||
2011-03-24 | Merge branch 'siri/reltool/skip-xref-test-when-debug/OTP-9133' into dev | Siri Hansen | |
* siri/reltool/skip-xref-test-when-debug/OTP-9133: Skip reltool_app_SUITE:undef_funcs on debug compiled emulator | |||
2011-03-24 | Merge branch 'siri/reltool/app_file-option/OTP-9135' into dev | Siri Hansen | |
* siri/reltool/app_file-option/OTP-9135: Allow app_file option to be keep | strip | all, as documented | |||
2011-03-24 | Merge branch 'ia/public_key/encode-decode-ssh/OTP-9144' into dev | Ingela Anderton Andin | |
* ia/public_key/encode-decode-ssh/OTP-9144: Implemented encode/decode support for ssh public key files | |||
2011-03-24 | Implemented encode/decode support for ssh public key files | Ingela Anderton Andin | |
2011-03-23 | v3_core: Fix variable incorrectly unbound after binary match | Björn Gustavsson | |
In the following code: m(<<Sz:8,_:Sz/binary>>) -> Sz = wrong. the Sz variable is supposed to be bound in the function header and the matching "Sz = wrong" should cause a badarg exception. But what happens is that the Sz variables seems to be unbound and the matching succeds and the m/1 function returns 'wrong'. If the Sz variable is used directly (not matched), it will have the expected value. Thus the following code: m(<<Sz:8,_:Sz/binary>>) -> Sz. will correctly return the value of Sz that was matched out from the binary. Reported-by: Bernard Duggan | |||
2011-03-23 | v3_core: Fix style and indentation | Björn Gustavsson | |
2011-03-23 | Merge branch 'hb/record_field_undefined_type/OTP-9147' into dev | Hans Bolinder | |
* hb/record_field_undefined_type/OTP-9147: Fix a bug concerning record field types | |||
2011-03-22 | Fix a bug concerning record field types | Hans Bolinder | |
The default value 'undefined' was added to records field types in such a way that the result was not always a well-formed type. This bug has been fixed. --- erl_pp has since OTP-8150 formatted types so that 'undefined' was removed from union types assigned to record fields. Since one cannot distinguish between 'undefined' added by the parser or supplied by the user, a side effect was that user supplied 'undefined's were also removed. Now the pretty printer shows 'undefined' even if added by the parser. This is a minor issue. | |||
2011-03-21 | Make xml valgrind messages end up in xml log | Patrik Nyblom | |
2011-03-21 | Allow app_file option to be keep | strip | all, as documented | Siri Hansen | |
This is the correction of the bug not allowing the values 'strip' or 'all' for the app_file option in reltool. | |||
2011-03-21 | Add testcase | Patrik Nyblom | |
2011-03-21 | Remove traces of release_handler reading from filesystem when it has Masters ↵ | Steven Gravell | |
list There are a couple of places in release_handler and release_handler_1 that assumed it has a disk to read from, which in the case of an erl_prim_loader Loader other than efile is not necessarily true Add check_paths/2 to do the equivalent of check_path/1 for when there is a Masters list Change get_vsn to no longer get sent File paths but instead use the Bin since beam_lib:version being sent a file path causes it to read the local file system Add get_current_vsn/1 as an equivalent to beam_lib:version(code:which(Mod)), but using erl_prim_loader:get_file instead of reading from local file system | |||
2011-03-21 | Teach tcp_recv not to cancel send timer | Patrik Nyblom | |
2011-03-21 | Add testcase | Patrik Nyblom | |
2011-03-21 | Teach win32/sys.c (fd-driver) not to leak readers causing init:restart to fail | Patrik Nyblom | |
2011-03-21 | Make Erlang build with Latest MS SDK, 7.1 (and VStudio 2010) | Patrik Nyblom | |
2011-03-17 | Make erts_printf %T not recurse on C stack | Patrik Nyblom | |
2011-03-16 | Update version numbers | Björn-Egil Dahlberg | |
2011-03-14 | Prepare releaseOTP_R14B02 | Erlang/OTP | |
2011-03-14 | Skip reltool_app_SUITE:undef_funcs on debug compiled emulator | Siri Hansen | |
2011-03-14 | Merge branch 'nick/CORBA/avoid_warnings/OTP-9050' into dev | Niclas Eklund | |
* nick/CORBA/avoid_warnings/OTP-9050: Corrected type of action in release notes. Corrected version in release notes file. Conflicts: lib/cosProperty/doc/src/notes.xml | |||
2011-03-14 | Corrected type of action in release notes. | Niclas Eklund | |
2011-03-14 | Corrected version in release notes file. | Niclas Eklund | |
2011-03-11 | Corrected fd_driver and cleaned up some really old code in win32/sys.[ch] | Patrik Nyblom | |
2011-03-11 | Update copyright years | Björn-Egil Dahlberg | |
2011-03-11 | Update release version in install README | Björn-Egil Dahlberg | |