aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2011-06-22Merge branch 'dev' into majorHenrik Nord
2011-06-22Merge branch 'hw/fix-doc-typos' into devHenrik Nord
* hw/fix-doc-typos: Fix typos in the epmd documentation OTP-9387
2011-06-21Update preloaded modulesPatrik Nyblom
2011-06-21Merge branch 'dev' into majorPatrik Nyblom
2011-06-20Merge branch 'hb/specs_and_types/OTP-9356' into devHans Bolinder
* hb/specs_and_types/OTP-9356: Add more specs and types
2011-06-20Add more specs and typesHans Bolinder
An incorrect spec, rpc:yield/1, has been fixed.
2011-06-20Merge branch 'hb/erl_docgen/bugfix/OTP-9360' into devHans Bolinder
* hb/erl_docgen/bugfix/OTP-9360: Bugfixes
2011-06-20BugfixesHans Bolinder
2011-06-20Merge branch 'siri/stdlib/shutdown-Term/OTP-9222' into majorSiri Hansen
* siri/stdlib/shutdown-Term/OTP-9222: Handle exit reason {shutdown,Term} as shutdown for children of supervisor
2011-06-20Merge branch 'dev' into majorSiri Hansen
2011-06-20Merge branch 'ia/odbc/on-more-platforms' into devIngela Anderton Andin
* ia/odbc/on-more-platforms: Added code to handle old postgres drivers on solaris and running against postgres for linux 64 bits (MySQL 64 seems to be broken). Enabled odbc tests on mac
2011-06-17Handle exit reason {shutdown,Term} as shutdown for children of supervisorSiri Hansen
In R13B proc_lib, gen_server and gen_fsm were all changed to handle exit reason {shutdown,Term} in the same way as exit reason 'shutdown', i.e. no crash reports are generated. This is an update of supervisor to do the same, i.e. handle these two exit reasons in the same way. This means that for children with restart type 'transient' there will be no attempt to restart the process if it terminates with reason {shutdown,Term}, and there will be no supervisor report.
2011-06-17Merge branch 'siri/sasl/release_handler-windows/OTP-9306' into devSiri Hansen
* siri/sasl/release_handler-windows/OTP-9306: Remove path to erts bin dir from erlsrv arguments
2011-06-17Added code to handle old postgres drivers on solaris and running againstIngela Anderton Andin
postgres for linux 64 bits (MySQL 64 seems to be broken).
2011-06-17Merge branch 'hb/parsetools/remove_dialyzer_warnings/OTP-8318' into devHans Bolinder
* hb/parsetools/remove_dialyzer_warnings/OTP-8318: Remove Dialyzer warnings
2011-06-16Enabled odbc tests on macIngela Anderton Andin
2011-06-16Merge branch 'ia/ssl/test-case-without-named-table' into majorIngela Anderton Andin
* ia/ssl/test-case-without-named-table: Changed test case so that we do not have to make ets-table named
2011-06-16Merge branch 'ia/ssl/longer-timeout-in-testcase' into majorIngela Anderton Andin
* ia/ssl/longer-timeout-in-testcase: Time out in test case needs to be longer to make sure clean up is properly executed
2011-06-16Merge branch 'ia/odbc/type-issues' into majorIngela Anderton Andin
* ia/odbc/type-issues: In some places SQLLEN should be used instead of SQLINTEGER to get correct type casting even on 64 bit platforms Changed SQLINTEGER to SQLSMALLINTEGER for sql_type in the function encode_data_type
2011-06-16Merge branch 'ia/odbc/ipv6-solaris-eaddrnotavail' into majorIngela Anderton Andin
* ia/odbc/ipv6-solaris-eaddrnotavail: Update to handle ipv6-solaris behaviour
2011-06-16Merge branch 'ia/odbc/mysql' into majorIngela Anderton Andin
* ia/odbc/mysql: Test odbc with MySQL
2011-06-16Merge branch 'ia/odbc/mysql' into devIngela Anderton Andin
* ia/odbc/mysql: Test odbc with MySQL
2011-06-16Merge branch 'ia/odbc/ipv6-solaris-eaddrnotavail' into devIngela Anderton Andin
* ia/odbc/ipv6-solaris-eaddrnotavail: Update to handle ipv6-solaris behaviour
2011-06-16Merge branch 'ia/odbc/type-issues' into devIngela Anderton Andin
* ia/odbc/type-issues: In some places SQLLEN should be used instead of SQLINTEGER to get correct type casting even on 64 bit platforms Changed SQLINTEGER to SQLSMALLINTEGER for sql_type in the function encode_data_type
2011-06-16Merge branch 'ia/ssl/longer-timeout-in-testcase' into devIngela Anderton Andin
* ia/ssl/longer-timeout-in-testcase: Time out in test case needs to be longer to make sure clean up is properly executed
2011-06-16Merge branch 'ia/ssl/test-case-without-named-table' into devIngela Anderton Andin
* ia/ssl/test-case-without-named-table: Changed test case so that we do not have to make ets-table named
2011-06-16Remove Dialyzer warningsHans Bolinder
The code that deals with the POSIX version of regexps has been commented out. Robert will add an option as well as some way to set the option in the source file later.
2011-06-15Remove path to erts bin dir from erlsrv argumentsSiri Hansen
The service will automatically use the start_erl.exe from the same directory as erlsrv.exe, and heart will use $PATH, which will always have the erts bin dir first. The reason is to avoid using old executables after upgrading erts via the release_handler.
2011-06-15Merge branch 'siri/stdlib/ensure-dir-no-read-access/OTP-9368' into devSiri Hansen
* siri/stdlib/ensure-dir-no-read-access/OTP-9368: Allow erl_tar to create directories inside directory with no read access
2011-06-15Merge branch 'siri/sasl/release_handler-windows/OTP-9306' into devSiri Hansen
* siri/sasl/release_handler-windows/OTP-9306: Make release_handler work with windows services
2011-06-15Make release_handler work with windows servicesSiri Hansen
This commit adds test cases from release_handler_SUITE on windows, including some corrections in erlsrv and release_handler.
2011-06-14Merge branch 'dev' into majorMicael Karlberg
2011-06-14Merge branch 'maint-r14' into devMicael Karlberg
2011-06-14Allow erl_tar to create directories inside directory with no read accessSiri Hansen
erl_tar:extract earlier failed when unpacking inside a directory which had some parent directory to which the user had no read access. This is corrected.
2011-06-14Changed test case so that we do not have to make ets-table namedIngela Anderton Andin
2011-06-14In some places SQLLEN should be used instead of SQLINTEGER to get correct ↵Ingela Anderton Andin
type casting even on 64 bit platforms
2011-06-13Time out in test case needs to be longer to make sure clean up isIngela Anderton Andin
properly executed
2011-06-13Update to handle ipv6-solaris behaviourIngela Anderton Andin
2011-06-13Test odbc with MySQLIngela Anderton Andin
Updated test framework to also be able to test the erlang odbc application with MySQL as database. Made minor changes to error-handling to improve interoperability with MySQL-drivers.
2011-06-10Merge branch 'dev' into majorIngela Anderton Andin
2011-06-10Merge branch 'egil/optimize-listdir/OTP-9023' into majorBjörn-Egil Dahlberg
* egil/optimize-listdir/OTP-9023: Update preloaded prim_file.beam Fix boundry error where files might get lost Teach prim_file:list_dir/1,2 to use fname chunks
2011-06-10Merge branch 'maint-r13' into maint-r14Micael Karlberg
2011-06-09Merge branch 'ia/ssl/denial-of-service/OTP-9364' into devIngela Anderton Andin
* ia/ssl/denial-of-service/OTP-9364: Prevention of denial of service attack
2011-06-08Update preloaded prim_file.beamBjörn-Egil Dahlberg
2011-06-08Fix boundry error where files might get lostBjörn-Egil Dahlberg
2011-06-08Teach prim_file:list_dir/1,2 to use fname chunksBjörn-Egil Dahlberg
The efile driver will now use chunked data on list_dir. This will lessen the number of sends to prim_file and hence improve performance. This method is utilized in both direct and async cases.
2011-06-08Merge branch 'dev' into majorRaimo Niskanen
2011-06-08Merge branch 'sa/prim-file-fix' into devRaimo Niskanen
* sa/prim-file-fix: Update preloaded module Replace atom in DRV macro in prim_file with string
2011-06-08Update preloaded moduleRaimo Niskanen
2011-06-08Replace atom in DRV macro in prim_file with stringStavros Aronis
An experimental version of Dialyzer discovered that the atom that replaced the DRV macro in prim_file ends up in calls to erlang:open_port({spawn, Driver}, Portopts) as the Driver argument. The documentation states that this call requires a string there. This change is also consistent with the one introduced in commit 0f03b1e9d2bef3bc830c31a369261af4c5234727 by Kostis Sagonas.