Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-12-08 | Remove time_t specific test in prim_file_SUITE | Björn-Egil Dahlberg | |
Remove time_t = Sint64 | Uint32 testcase only. The year 2040 does not exist on Sint32. | |||
2011-12-08 | Deprecate the inviso application | Björn Gustavsson | |
2011-12-08 | Optimize join_maps() in dialyzer_dataflow | Hans Bolinder | |
By keeping tracks of modified types the joining of maps ha become significantly faster. | |||
2011-12-08 | Update prim_file.beam and prim_zip.beam | Björn-Egil Dahlberg | |
2011-12-08 | Add types for posixtime_to_universaltime and the reverse | Patrik Nyblom | |
2011-12-08 | Set BASEYEAR to 1902 | Patrik Nyblom | |
2011-12-08 | Set lower limit of years handled to 1601 | Patrik Nyblom | |
2011-12-08 | Emulate localtime, gmtime and mktime to enable negative time_t | Patrik Nyblom | |
2011-12-08 | Document file:*_file_info/2 | Björn-Egil Dahlberg | |
* file:read_file_info/2 * file:write_file_info/3 Document options and time behavior. | |||
2011-12-08 | Fix compiler warning in unix_efile.c | Björn-Egil Dahlberg | |
2011-12-08 | Change name of bif universaltime_to_seconds/1 | Björn-Egil Dahlberg | |
* erlang:universaltime_to_seconds/1 changed to erlang:universaltime_to_posixtime/1 * erlang:seconds_to_universaltime/1 changed to erlang:posixtime_to_universaltime/1 Let prim_file.erl reflect these changes. | |||
2011-12-08 | Change options to prim_file:*_file_info/* | Björn-Egil Dahlberg | |
* 'utc' changed to 'universal' * 'epoch' changed to 'posix' This change conforms to other naming already in OTP, e.g. erlang:universaltime_to_localtime/1. | |||
2011-12-08 | Remove dead code | Björn-Egil Dahlberg | |
2011-12-08 | Catch errors from prim_file:*_file_info | Björn-Egil Dahlberg | |
We do not want to crash the file server. | |||
2011-12-08 | Testcase for utc <-> seconds conversion | Björn-Egil Dahlberg | |
2011-12-08 | Fix negative time in seconds_to_universaltime/1 | Björn-Egil Dahlberg | |
2011-12-08 | Remove OS taint from datetime conversion | Björn-Egil Dahlberg | |
2011-12-08 | Add utc <-> seconds conversions bifs | Björn-Egil Dahlberg | |
2011-12-08 | Let prim_file validate ctime in file_info | Björn-Egil Dahlberg | |
2011-12-08 | Teach #file_info spec unix epochs for file times | Björn-Egil Dahlberg | |
2011-12-08 | Add file_info_opt tests in prim_file_SUITE | Björn-Egil Dahlberg | |
2011-12-08 | unix_efile: Zero is a valid number in utime | Björn-Egil Dahlberg | |
Both mtime and atime were incorrectly checked for zero | |||
2011-12-08 | Let univ_to_local reflect HAVE localtime_r | Björn-Egil Dahlberg | |
Handle error cases when localtime or localtime_r returns null. | |||
2011-12-08 | Fix types for gregday in erl_time_sup.c | Björn-Egil Dahlberg | |
2011-12-08 | Teach windows sys_localtime_r | Björn-Egil Dahlberg | |
2011-12-08 | Optimize erl_types:t_unify() | Hans Bolinder | |
Using a list rather than a dict() for unified variables saves quite some time. In particular Dialyzer is a heavy user of t_unify(). | |||
2011-12-08 | Add explanatory text for tc failure | Lukas Larsson | |
2011-12-08 | Declare hipe_mode_switch_debug extern in header | Patrik Nyblom | |
Fixes alignment warning from ld on 64bit platforms with gcc 4.6.1 | |||
2011-12-08 | Change supervisor_SUITE to pure common test style | Siri Hansen | |
Also, some minor debug help is added to a test case which fails every now and then. | |||
2011-12-08 | Use new directive "-callback" and prepare version and appup for release | Ingela Anderton Andin | |
2011-12-08 | Tell dialyzer not to warn about unused functions | Anders Svensson | |
Depending on the dictionary, generated dictionary modules may contain unused functions included from diameter_gen.hrl. There may still be warnings however since even used functions can contain code that isn't reached for a given dictionary. It would be useful for diameter to generate spec attributes for a dictionary's generated records but the format of these is currently undocumented. | |||
2011-12-08 | Add compiler testcases for generation and compilation to beam | Anders Svensson | |
2011-12-08 | Fix semantic checks on AVP qualifiers | Anders Svensson | |
Didn't quite interpret '*' as RFC 3588 dictates. In particular, the interpretation depends on what's being qualified, a required, optional or fixed AVP. | |||
2011-12-08 | Minor codegen/debug fix | Anders Svensson | |
Writing a dictionary to file failed. | |||
2011-12-07 | Give elements of lock-free queues some time to be deallocated | Rickard Green | |
2011-12-07 | Fix cleanup of elements in lock-free queues | Rickard Green | |
2011-12-07 | Return {error,closed} from sendfile if closed | Lukas Larsson | |
If the socket is closed by the remote end, sendfile now returns {error,closed}. | |||
2011-12-07 | Deal with crypto:start() failure in TLS suite | Anders Svensson | |
2011-12-07 | erl_driver.h: Enlarge types in driver output functions | Raimo Niskanen | |
2011-12-07 | erl_driver.h: Enlarge types in driver queue and alloc functions | Raimo Niskanen | |
2011-12-07 | erl_driver.h: Use ErlDrvSizeT for size field in ErlIOVec | Raimo Niskanen | |
2011-12-07 | Added ticket number. | Micael Karlberg | |
OTP-9795 | |||
2011-12-07 | erts: Suppress valgrind warning about syscall sendmsg | Sverker Eriksson | |
Valgrind complains: "Syscall param socketcall.sendmsg(msg.msg_control) points to uninitialised byte(s)". Seems valgrind do not know which bytes of msg_control are padding. | |||
2011-12-07 | Merge branch 'anders/diameter/suites_and_dialyzer/OTP-9781' | Anders Svensson | |
* anders/diameter/suites_and_dialyzer/OTP-9781: Minor diameter_dict_scanner fix Skip sctp tests on {error, esocktnosupport} Ensure that TLS will be available in TLS suite | |||
2011-12-07 | Merge branch 'anders/diameter/callback_redirection/OTP-9777' | Anders Svensson | |
* anders/diameter/callback_redirection/OTP-9777: Update documentation Use diameter_callback in relay and tls suites Use diameter_callback in failover suite Update app suite Smarter diameter_callback | |||
2011-12-07 | Merge branch 'anders/diameter/dict_error_identification/OTP-9639' | Anders Svensson | |
* anders/diameter/dict_error_identification/OTP-9639: (27 commits) Update documentation Improve base_rfc3588.dia formatting Make typo fix backwards compatible Fix base_rfc3588.dia typo Check compiler dependencies in app suite Move type definitions into diameter.erl Fix interpretation of vendor id in @grouped Add range checks on dictionary integers Don't explicitly load inherited modules Tweak diameter_make interface Add format testcase to compiler suite Add diameter_dict_util:format/1 for reconstructing a dictionary file Make diameter_types usable with @codecs Minor codegen tweaks Remove unnecessary includes Add compiler suite Update app suite Update codec suite Vendor id fixes No longer inherit common dictionary in relay dictionary ... | |||
2011-12-07 | Merge branch 'anders/diameter/release_R15B' | Anders Svensson | |
* anders/diameter/release_R15B: Version -> 1.0 | |||
2011-12-07 | Don't assume empty sndrcvinfo in diameter_sctp | Anders Svensson | |
It isn't always the case. The information isn't currently used in any case. | |||
2011-12-07 | Merge remote branch 'origin/peppe/common_test/report_logfile' | Peter Andersson | |
* origin/peppe/common_test/report_logfile: Get test case log file name reported to user OTP-9676 | |||
2011-12-07 | Merge branch 'ia/ssl/tcp-delivery-problem-may-cause-econnaborted' | Ingela Anderton Andin | |
* ia/ssl/tcp-delivery-problem-may-cause-econnaborted: If if TLS/SSL-close-notify message is not delivered you can get econnaborted error. |