aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2013-01-09Add file:allocate/3 operationFilipe David Manana
This operation allows pre-allocation of space for files. It succeeds only on systems that support such operation. The POSIX standard defines the optional system call posix_fallocate() to implement this feature. However, some systems implement more specific functions to accomplish the same operation. On Linux, if the more specific function fallocate() is implemented, it is used instead of posix_fallocate(), falling back to posix_fallocate() if the fallocate() call failed (it's only supported for the ext4, ocfs2, xfs and btrfs file systems at the moment). On Mac OS X it uses the specific fcntl() operation F_PREALLOCATE, falling back to posix_fallocate() if it's available (at the moment Mac OS X doesn't provide posix_fallocate()). On any other UNIX system, it uses posix_fallocate() if it's available. Any other system not providing this system call or any function to pre-allocate space for files, this operation always fails with the ENOTSUP POSIX error.
2013-01-09Merge branch 'ml/crypto/add-ripemd160-digest/OTP-10667'Fredrik Gustafsson
* ml/crypto/add-ripemd160-digest/OTP-10667: fix crypto ripemd160 tests to use hash_init family fix ripemd160 to use hash_init family and add documentation fix missing defines for RIPEMD160_CTX_LEN and RIPEMD160_LEN add ripemd160 support to crypto
2013-01-09Update primary bootstrapBjörn Gustavsson
2013-01-09Merge branch 'hb/prepare_for_unicode/OTP-10630'Hans Bolinder
* hb/prepare_for_unicode/OTP-10630: Prepare OTP files for Unicode as default encoding
2013-01-09Prepare OTP files for Unicode as default encodingHans Bolinder
2013-01-09Merge branch 'siri/cover/new-bugs-r16/OTP-10638'Siri Hansen
* siri/cover/new-bugs-r16/OTP-10638: [cover] Cleanup by stopping cover between tests [common_test] Stop cover on slave node after node is terminated [test_server] Stop cover on node after node is terminated [cover] Fix timing dependent bug in cover_SUITE:reconnect [cover] Remove stopped node also from lost_nodes list [cover] Don't mark stopped node as lost
2013-01-09Merge branch 'hb/fix_fop_warnings/OTP-10665'Hans Bolinder
* hb/fix_fop_warnings/OTP-10665: Fix some FOP warnings
2013-01-09Fix some FOP warningsHans Bolinder
Examples overflowing the width of PDF pages have been fixed. The remaining warnings are due to table cells, and require more work.
2013-01-08Merge branch 'sverk/hipe-smp-independence'Sverker Eriksson
* sverk/hipe-smp-independence: erts,hipe: Make hipe compiler ask running emulator about process struct offsets
2013-01-08Merge branch 'ia/ssl/TLS-1.2-default/OTP-10425'Ingela Anderton Andin
* ia/ssl/TLS-1.2-default/OTP-10425: ssl: Make TLS-1.2 default version
2013-01-08Merge branch 'ia/ssl/deprecated-r16'Ingela Anderton Andin
* ia/ssl/deprecated-r16: stdlib: Updated otp_internal to reflect removal of deprecated function ssl & orber: Remove ssl:pid/1 (has been pointless since R14)
2013-01-08Merge branch 'hb/stdlib/shell_improvement/OTP-10659'Hans Bolinder
* hb/stdlib/shell_improvement/OTP-10659: [stdlib] Improve the Erlang shell's handling of scanner errors
2013-01-07[stdlib] Improve the Erlang shell's handling of scanner errorsHans Bolinder
The Erlang shell now skips the rest of the line when it encounters an Erlang scanner error. Examples: 1> $\xtt. * 1: illegal character 1> "$\xtt". * 1: illegal character 1>
2013-01-03Merge branch 'ks/stdlib/proplists-spec-cleanup/OTP-10663'Fredrik Gustafsson
* ks/stdlib/proplists-spec-cleanup/OTP-10663: Ensure that edocumentation and the xml file are in sync Clean up some specs
2013-01-03Merge branch 'ks/kernel/dist_util-minor-fix/OTP-10662'Fredrik Gustafsson
* ks/kernel/dist_util-minor-fix/OTP-10662: Do not return wrong terms unnecessarily
2013-01-03Merge branch 'hb/parsetools/remove_esyntax/OTP-10660'Hans Bolinder
* hb/parsetools/remove_esyntax/OTP-10660: Remote the file esyntax.yrl
2013-01-02Remote the file esyntax.yrlHans Bolinder
2013-01-02Make sure the Erlang shell prompt can handle UnicodeHans Bolinder
2013-01-02Improve and correct contracts and types of the IO modulesHans Bolinder
2013-01-02Clean up some of the Unicode documentationHans Bolinder
2013-01-02Correct bugs in the old shell (user.erl)Hans Bolinder
2013-01-02[tools] Add Unicode support for CoverHans Bolinder
Code written by Siri Hansen.
2013-01-02[test_server] Add Unicode support to module listingHans Bolinder
Code written by Siri Hansen.
2013-01-02[erl_docgen] Use DejaVu fonts when generating PDFHans Bolinder
A few examples in lib/stdlib/doc/src/unicode_usage.xml make use of Cyrillic characters.
2013-01-02Update primary bootstrapHans Bolinder
2013-01-02[syntax_tools] Introduce Unicode support for Erlang source filesHans Bolinder
Not complete. Unicode in wild attribute doesn't work. No support for Unicode regarding Igor stubs.
2013-01-02[erl_docgen] Update due to introduction of UnicodeHans Bolinder
2013-01-02[edoc] Introduce Unicode support for source filesHans Bolinder
2013-01-02[stdlib, kernel] Introduce Unicode support for Erlang source filesHans Bolinder
Expect modifications, additions and corrections. There is a kludge in file_io_server and erl_scan:continuation_location() that's not so pleasing.
2012-12-27Merge branch 'hb/stdlib/spec_improvements/OTP-10658'Hans Bolinder
* hb/stdlib/spec_improvements/OTP-10658: [stdlib] Correct and improve specs and types of erl_scan and sys
2012-12-21fix crypto ripemd160 tests to use hash_init familyMichael Loftis
this updates the previous patch adding tests for the ripemd160 functions to use the hash and hash_init family instead of calling directly.
2012-12-21fix ripemd160 to use hash_init family and add documentationMichael Loftis
this patch removes the exports for ripemd160 from the previous patches and incorporates those functions into the hash_init family. documentation is also added.
2012-12-21[stdlib] Correct and improve specs and types of erl_scan and sysHans Bolinder
Thanks to Kostis Sagonas.
2012-12-21[cover] Cleanup by stopping cover between testsSiri Hansen
If one test failed, the next would sometimes also fail since cover was not stopped.
2012-12-21Merge branch 'fredrik/ssh/sftp-file-is-dir/OTP-6406'Fredrik Gustafsson
* fredrik/ssh/sftp-file-is-dir/OTP-6406: Removed unused code ssh.erl and changed tests Added eexist to return proper sftp parameter Changed erlclient testcases for sftp sftp ver6 mods, SSH_FX_CANNOT_DELETE added as parameter Updated doc for sftpd_vsn Changed testcases to proper sftpd listening changed option to sftpd_vsn corrected is_dir call in sftpd Changes to sftpd test suite Added a file_is_a_directory to a proper status return Basic functionality for sftp ver6 and testcase Conflicts: lib/ssh/doc/src/ssh_sftpd.xml
2012-12-21Merge branch 'fredrik/ssh/fix-appup-syntax/OTP-10657'Fredrik Gustafsson
* fredrik/ssh/fix-appup-syntax/OTP-10657: Fixed syntax error in ssh appup file
2012-12-20Merge branch 'master' of super:otpMicael Karlberg
2012-12-20Merge branch 'bmk/snmp/manager/remove_deprecated_functions/OTP-10027'Micael Karlberg
2012-12-20[snmp/manager] Updated release notesMicael Karlberg
OTP-10027
2012-12-20[snmp/manager] Updated manager test suite to use only the apiMicael Karlberg
Updated manager test suite to use only the api. The test cases that tested the old api (01), are now skipped. OTP-10027
2012-12-20[snmp/manager] Preliminary test suite updateMicael Karlberg
OTP-10027
2012-12-20[snmp/manager] Removed deprecated functionsMicael Karlberg
Removed deprecated functions from the SNMP manager interface module snmpm. Also updated otp_internal in the stdlib app. OTP-10027
2012-12-20Merge branch 'siri/common_test/ct_netconfc-adjust_window/OTP-10646'Siri Hansen
* siri/common_test/ct_netconfc-adjust_window/OTP-10646: [common_test] Adjust window after netconf client receives data
2012-12-20[common_test] Stop cover on slave node after node is terminatedSiri Hansen
Before terminating slave nodes, common_test calls cover:flush/1 to fetch data from the node without actually stopping cover on this node. If cover is not stopped for the node and a new node with the same name is started, then cover will be started on the new node. To avoid this common_test now calls cover:stop/1 after the slave node is terminated.
2012-12-20[test_server] Stop cover on node after node is terminatedSiri Hansen
Before terminating slave nodes, test_server calls cover:flush/1 to fetch data from the node without actually stopping cover on this node. If cover is not stopped for the node and a new node with the same name is started, then cover will be started on the new node. To avoid this test_server now calls cover:stop/1 after the slave node is terminated.
2012-12-20Fixed syntax error in ssh appup fileFredrik Gustafsson
2012-12-20Update preloaded erlang.beamPatrik Nyblom
2012-12-20Merge branch 'pan/process_info_spec_doc/r16/OTP-10584'Patrik Nyblom
* pan/process_info_spec_doc/r16/OTP-10584: Correct doc re process_info(Pid,links)
2012-12-20Correct doc re process_info(Pid,links)Patrik Nyblom
2012-12-20Merge branch 'jd/file-ram-opt-doc'Patrik Nyblom
* jd/file-ram-opt-doc: Move ram option from mode() type into open/2 spec Basic documentation of the 'ram' mode in the 'file' module OTP-10651