summaryrefslogtreecommitdiff
path: root/lib
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'bg/sasl-infinity' into devErlang/OTP2010-03-106-54/+86
|\ | | | | | | | | | | | | | | | | | | * bg/sasl-infinity: Prepare patch release sasl: Use gen_server:call/3 with infinity timeout OTP-8506 bg/sasl-infinity Use an infinity timeout in all calls to gen_server:call() in the sasl application.
| * Prepare patch releaseBjörn Gustavsson2010-03-082-1/+17
| |
| * sasl: Use gen_server:call/3 with infinity timeoutBjörn Gustavsson2010-03-084-38/+54
| | | | | | | | | | | | | | | | | | | | | | | | gen_server:call/2,3 now sets up a monitor to make sure that it will be noticed if the called process dies. Therefore, there is almost never a good reason to use gen_server:call/2 with its default 5 seconds timeout. Use gen_server:call/3 with the 'infinity' timeout instead. To make sure we use the 'infinity' timeout every time, wrap the to call gen_server:call/3 in a local call/1 function in each module.
* | OTP-8502 os:cmd hangRickard Green2010-03-103-17/+104
| | | | | | | | | | A race condition in os:cmd/1 could cause the caller to get stuck in os:cmd/1 forever.
* | Fix a crash when using an undefined record name as a typeKostis Sagonas2010-03-101-6/+3
| |
* | OTP-7452 Support for SQL_WCHAR, SQL_WVARCHAR and strings as binariesIngela Anderton Andin2010-03-0910-104/+233
| | | | | | | | | | | | | | ODBC now handles the types SQL_WCHAR and SQL_WVARCHAR. ODBC also has a new connection option to return all strings as binaries and also expect strings to be binaries in the param_query function. This provides some but not a full unicode support.
* | OTP-8503 stdlib: records with no fields is considered typed by eppHans Bolinder2010-03-092-2/+19
| | | | | | | | | | | | | | | | | | The empty record (no fields) is now considered typed. It is more consistent than before; the base case is the logical one. A record is typed iff all its fields are typed. A record is tagged 'typed' iff it is typed.
* | OTP-8501 stdlib: erl_pp no longer quotes atoms in typesHans Bolinder2010-03-091-2/+1
| | | | | | | | The erlang pretty printer (erl_pp) no longer quotes atoms in types.
* | Merge branch 'ks/types' into devErlang/OTP2010-03-0918-151/+315
|\ \ | | | | | | | | | | | | | | | | | | | | | * ks/types: file.hrl: Move out type declarations kernel: Add types and specs OTP-8494 ks/types
| * | file.hrl: Move out type declarationsKostis Sagonas2010-03-077-64/+52
| | | | | | | | | | | | | | | | | | | | | | | | | | | Having various type declarations in the file.hrl file was once upon a time necessary since the system could not really handle remote types. Now it can and these declarations should not be there but appear in file.erl instead. This means that files that need to use these types can refer to them using a remote type reference, and not having to include file.hrl - at least not for this reason.
| * | kernel: Add types and specsKostis Sagonas2010-03-0711-22/+198
|/ /
* | Added missing bracketNiclas Eklund2010-03-059-30/+77
| |
* | OTP-8486 parsetools: yecc bugHans Bolinder2010-03-052-5/+37
| | | | | | | | | | A bug introduced in Parsetools 1.4.4 (R12B-2) has been fixed. (Thanks to Manolis Papadakis.)
* | Fix small confusion/buglet in the handling of 'or'Kostis Sagonas2010-03-031-2/+2
| |
* | OTP-8483 parsetools: yecc bugHans Bolinder2010-03-032-4/+40
| | | | | | | | | | | | Yecc failed to report reduce/reduce conflicts where one of the reductions involved the root symbol. This bug has been fixed. (Thanks to Manolis Papadakis.)
* | OTP-8472 tools: xref: re/regexpHans Bolinder2010-03-034-24/+28
| | | | | | | | | | Xref has been updated to use the re module instead of the deprecated regexp module.
* | Merge from dev branch: OTP-8480 & OTP-8481.Micael Karlberg2010-03-025-28/+140
| |
* | OTP-8473 stdlib: erl_pp bugfix abstract type 'fun'Hans Bolinder2010-03-022-13/+26
| | | | | | | | The abstract type 'fun' could not be printed. This bug has been fixed.
* | OTP-8471 kernel: race in disk_log_SUITEHans Bolinder2010-03-021-11/+12
| |
* | OTP-8470 stdlib: epp bugHans Bolinder2010-03-022-4/+25
| | | | | | | | | | | | The Erlang code preprocessor (epp) sent extra messages on the form {eof,Location} to the client when parsing the file attribute. This bug, introduced in R11B, has been fixed.
* | OTP-8469 tools: race in CoverHans Bolinder2010-03-021-5/+7
| | | | | | | | A race condition affecting Cover has been removed.
* | asn1 tests: use consistent line endingsBjörn Gustavsson2010-02-269-249/+249
| | | | | | | | | | | | | | Some files used by the asn1 test suite had mixed DOS and Unix line endings. Noticed-by: Richard Carlsson
* | Update version for R14ARickard Green2010-02-242-12/+12
|/
* The R13B04 releaseOTP_R13B04Erlang/OTP2010-02-192-36/+79
|
* OTP-8466: Fix ei to build on vxworksBjörn-Egil Dahlberg2010-02-221-0/+2
|
* OTP-8395, OTP-8433 & OTP-8442.Micael Karlberg2010-02-221-0/+12
|
* OTP-8317, OTP-8323, OTP-8328, OTP-8362 & OTP-8403.Micael Karlberg2010-02-222-114/+15
|
* Fix escript:foldl/3 for beam and archive filesTuncer Ayaz2010-02-221-2/+2
| | | | | | | | | escript:foldl/3 was not completely adapted to the changes introduced in 6af2ac91005276add18b1c9bbf4c8fe4f8c6e040. A partial fix has already been applied by Hakan Mattson in 4ec4a06edb5baaa0af2840943230c4a0be3a93cf. Signed-off-by: Tuncer Ayaz <tuncer.ayaz@gmail.com>
* asn1: Correct ticket number in vsn.mkBjörn Gustavsson2010-02-191-2/+2
|
* Added megaco_config to appup fileHåkan Mattsson2010-02-191-0/+3
|
* Update release notesBjörn Gustavsson2010-02-191-3/+107
|
* OTP-8463 Support for EXTENSIBILITY IMPLIED and SET/SEQ OF NamedType isKenneth Lundin2010-02-191369-105/+348428
| | | | added.
* Added release notes for megaco 3.14Håkan Mattsson2010-02-191-0/+105
|
* Update version numberBjörn-Egil Dahlberg2010-02-191-6/+6
|
* Update release notesBjörn-Egil Dahlberg2010-02-1926-70/+1389
|
* Fix problems identified by dialyzer.Kostis Sagonas2010-02-191-7/+7
|
* mnesia: fix vsnDan Gudmundsson2010-02-191-1/+1
|
* OTP-8451 Harmless buffer overflow by one byte in asn1 and ram_file_drv.Sverker Eriksson2010-02-182-22/+31
|
* Avoid crash when trying to alert the user.Dan Gudmundsson2010-02-181-3/+7
|
* Update version numbersBjörn Gustavsson2010-02-175-7/+6
|
* ssl: Prepare releaseDan Gudmundsson2010-02-173-6/+50
|
* OTP-8311: Various updates and fixes in Common Test and Test ServerPeter Andersson2010-02-1787-176/+14112
|
* OTP-8459 Do a controlled shutdown if a non ssl packet arrives as the firstDan Gudmundsson2010-02-174-35/+147
| | | | packet.
* Merge branch 'ks/hipe' into ccase/r13b04_devErlang/OTP2010-02-1745-1039/+2800
|\ | | | | | | | | | | | | | | | | | | | | | | | | * ks/hipe: dialyzer: Fix system_limit exception in race analysis syntax_tools: Add types and specs for most exported functions syntax_tools: Support the --enable-native-libs configure option syntax_tools: Remove $Id$ annotations dialyzer: New version for the R13B04 release hipe: Miscellaneous additions typer: New version for the R13B04 release Fix a HiPE compiler bug evaluating an expression that throws system_limit OTP-8460 ks/hipe
| * dialyzer: Fix system_limit exception in race analysisKostis Sagonas2010-02-162-13/+26
| | | | | | | | | | | | | | | | dialyzer_callgraph: Avoid creation of too many ets tables by the race analysis. dialyzer_dataflow: The digraph returned by the race analysis should not be the translated one.
| * syntax_tools: Add types and specs for most exported functionsKostis Sagonas2010-02-149-221/+965
| | | | | | | | | | While at it, consistently replace "bool()" with "boolean()" in the Edoc specs.
| * syntax_tools: Support the --enable-native-libs configure optionKostis Sagonas2010-02-141-1/+4
| | | | | | | | While at it, turn on some more warnings.
| * syntax_tools: Remove $Id$ annotationsKostis Sagonas2010-02-143-6/+1
| |
| * dialyzer: New version for the R13B04 releaseKostis Sagonas2010-02-1428-689/+1685
| |
| * hipe: Miscellaneous additionsKostis Sagonas2010-02-143-1/+4
| |