Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-03-04 | Minor spec fix | Anders Svensson | |
2013-03-04 | Add transport_opt() watchdog_config | Anders Svensson | |
To make the number of watchdogs sent before the transitions REOPEN -> OKAY and OKAY -> SUSPECT configurable. Using anything other then the default config is non-standard and should only be used for test. | |||
2013-03-02 | Fix the title of hipe_app documentation page | Loïc Hoguin | |
2013-03-02 | Fix http_request:http_headers/1 to send content-length when length is zero | CA Meijer | |
In R16B01, the http_request:http_headers/1 function removes the content-length field from the HTTP headers if the content length is zero. This results in some (perhaps many) HTTP servers rejecting POSTs and PUTs without data with a 411 status word. From RFC2616, section 14.13: "Any Content-Length greater than or EQUAL to zero is a valid value". | |||
2013-03-01 | Merge branch 'ia/ssl/tcp_connect_test' into maint | Ingela Anderton Andin | |
* ia/ssl/tcp_connect_test: ssl: correct test case | |||
2013-03-01 | ssl: correct test case | Ingela Anderton Andin | |
2013-03-01 | Merge branch 'ia/ssh/errorhandling-nonexisting-subsystem/OTP-10714' into maint | Ingela Anderton Andin | |
* ia/ssh/errorhandling-nonexisting-subsystem/OTP-10714: ssh: Prepare for upcoming release ssh: Ctify test doc ssh: Test and enhance handling of nonexistent subsystem | |||
2013-03-01 | ssh: Prepare for upcoming release | Ingela Anderton Andin | |
Note: If more things are added before the next releas the appup will need more updates. | |||
2013-03-01 | ssh: Ctify test doc | Ingela Anderton Andin | |
2013-03-01 | ssh: Test and enhance handling of nonexistent subsystem | Ingela Anderton Andin | |
2013-02-28 | erts: Fix memleak related to meta tracing | Sverker Eriksson | |
2013-02-28 | mnesia: Decrease test times | Dan Gudmundsson | |
2013-02-28 | Decrease sleep timer | Lukas Larsson | |
2013-02-27 | erl_interface: Remove superfluous comma in enum erlang_char_encoding | Sverker Eriksson | |
2013-02-27 | Update version numbers for R16B01 development | Björn-Egil Dahlberg | |
2013-02-26 | stdlib: Remove race in ets_SUITE:delete_large_tab | Sverker Eriksson | |
2013-02-26 | stdlib: Remove race in ets_SUITE:delete_large_named_table | Sverker Eriksson | |
2013-02-26 | Add debug printouts | Dan Gudmundsson | |
Testcase if wobbling | |||
2013-02-26 | wx: Fix failing testcases | Dan Gudmundsson | |
Fix bad hit test. Fix timing issue in test. | |||
2013-02-26 | stdlib: Ignore symlink tests on windows | Dan Gudmundsson | |
Symlinks only partially works on windows 7, ignore those tests on windows machines for now | |||
2013-02-25 | Prepare releaseOTP_R16B | Erlang/OTP | |
2013-02-25 | Merge branch 'kostis/hipe-icode-range-bug' | Sverker Eriksson | |
* kostis/hipe-icode-range-bug: Fix bug related to the handling of is_number/1 by the range analysis Clean up and homogenize text messages for options OTP-10897 | |||
2013-02-25 | Merge branch 'sverk/halfword-loading-crash' | Sverker Eriksson | |
* sverk/halfword-loading-crash: erts: Fix crash on halfword and code_SUITE:big_boot_embedded OTP-10896 | |||
2013-02-25 | Merge branch 'lukas/erts/add_ERL_MAX_PORTS_env/OTP-10895' | Lukas Larsson | |
* lukas/erts/add_ERL_MAX_PORTS_env/OTP-10895: Undo removal of ERL_MAX_PORTS os variable | |||
2013-02-25 | Merge branch 'lukas/erts/default_ports_win32/OTP-10892' | Lukas Larsson | |
* lukas/erts/default_ports_win32/OTP-10892: Update to work with new default windows max ports Set default max ports on win32 to 8192 | |||
2013-02-25 | erts: Make vxworks build | Björn-Egil Dahlberg | |
2013-02-25 | Update to work with new default windows max ports | Lukas Larsson | |
2013-02-25 | Fix bug related to the handling of is_number/1 by the range analysis | Kostis Sagonas | |
The following module produced erroneous results when compiled with HiPE: -module(a). -export([foo/1]). foo(X) when is_number(X) -> is_integer(X). Running: 1> c(a). 2> a:foo(0). true 3> hipe:c(a). 4> a:foo(0). false % *** WRONG *** The problem was that the 'number' case for the `hipe_icode:type_test/1` was going to the default case where the argument was determined as being something other than an integer. Thanks to Sebastian Egner and Johannes Weißl for bringing the bug into attention. Fixed on the day it was reported. | |||
2013-02-25 | Clean up and homogenize text messages for options | Kostis Sagonas | |
2013-02-25 | Undo removal of ERL_MAX_PORTS os variable | Lukas Larsson | |
2013-02-25 | Set default max ports on win32 to 8192 | Lukas Larsson | |
2013-02-25 | erts: Fix crash on halfword and code_SUITE:big_boot_embedded | Sverker Eriksson | |
2013-02-23 | Merge branch 'anders/diameter/SoC/OTP-10688' | Anders Svensson | |
* anders/diameter/SoC/OTP-10688: Add RFC 6733 commentary to SoC chapter Add RFC 6737 Capabilities Update dictionary Remove cruft from doc Makefile | |||
2013-02-23 | Merge branch 'rickard/epmd-prot-doc/OTP-10872' | Rickard Green | |
* rickard/epmd-prot-doc/OTP-10872: Add info about UTF-8 encoding of nodename | |||
2013-02-23 | Merge branch 'rickard/win-drv-bugfix/OTP-10803' | Rickard Green | |
* rickard/win-drv-bugfix/OTP-10803: Fix close_active_handle() properly | |||
2013-02-22 | Merge branch 'egil/win-efile-bugfix/OTP-10890' | Björn-Egil Dahlberg | |
* egil/win-efile-bugfix/OTP-10890: erts: Use correct type for ReadFile bytes read | |||
2013-02-22 | Update preloaded modules | Björn-Egil Dahlberg | |
2013-02-22 | Add RFC 6733 commentary to SoC chapter | Anders Svensson | |
The commentary is not yet complete. It currently stops at chapter 4 of the RFC. | |||
2013-02-22 | Update copyright years | Björn-Egil Dahlberg | |
2013-02-22 | Add info about UTF-8 encoding of nodename | Rickard Green | |
2013-02-22 | erts: Use correct type for ReadFile bytes read | Björn-Egil Dahlberg | |
Using a 64bit type for bytes read will not always clear the higher bits. | |||
2013-02-22 | Merge branch 'rickard/r16b/port-leak/OTP-10809' | Rickard Green | |
* rickard/r16b/port-leak/OTP-10809: Fix port structure leak when hitting system limit | |||
2013-02-22 | tests: Remove old_httpc_SUITE, no longer used | Björn-Egil Dahlberg | |
2013-02-22 | Merge branch 'pan/unicode_users_guide/r16b' | Patrik Nyblom | |
* pan/unicode_users_guide/r16b: Update .gitignore Correct text according to document reviews Adapt the Unicode chapter of STDLIB users guide to R16 OTP-10302 | |||
2013-02-22 | Update .gitignore | Patrik Nyblom | |
2013-02-22 | Correct text according to document reviews | Patrik Nyblom | |
2013-02-22 | Adapt the Unicode chapter of STDLIB users guide to R16 | Patrik Nyblom | |
Also extended it with more examples, summaries and other stuff. | |||
2013-02-22 | Merge branch 'sverk/win-64-pointer-fix' | Sverker Eriksson | |
* sverk/win-64-pointer-fix: erts: Correct term type for printf %T erts: Correct internal printf integer type for win64 erts: Correct some printf type formatting erts: Fix type bug in get_proc_affinity for windows OTP-10887 Forgot this ticket for sverk/erlang_pid-revert: OTP-10885 | |||
2013-02-22 | Merge branch 'sal/ftp/OTP-10886' | Fredrik Gustafsson | |
* sal/ftp/OTP-10886: Changed to correct errorcode in testcase Handle correctly the "No files found or file unavailable" error code. | |||
2013-02-22 | Merge branch 'lukas/common_test/remove_deprecated_run_test/OTP-9052' | Lukas Larsson | |
* lukas/common_test/remove_deprecated_run_test/OTP-9052: Remove the deprecated run_test start program OTP-10881 |