1Mon Jun 18 13:24:41 2012 Jonathan Stanton <jonathan@spreadconcepts.com> 2 3 * src/data_link.c (DL_init_channel): Fix DL_init_channels algorithm for selecting which 4 interface to bind for multicast and broadcast receive sockets. Fixes regression in Spread 5 usage of DL for multicast sockets. 6 72012-05-02 Jonathan Stanton <jonathan@laptop5.int.spreadconcepts.com> 8 9 * src/data_link.c (DL_init_channel): The version of data_link.c's DL_init_channel function has 10 changed semantics from the version previously used by Spread. When you create a channel with a 11 multicast address, it will now only bind that socket to the multicast address not to INADDR_ANY. 12 This is needed for some uses of datalink (like in Spines) but is the wrong semantics if you want 13 one socket to receive both multicast and unicast traffic sent to the same port. So to support that 14 semantics a new channel_type modifier was added to the API DL_BIND_ALL which when passed in will force 15 the bind to be to INADDR_ANY unless a specific interface address was provided. 16 17Tue Mar 20 17:57:44 2012 Jonathan Stanton <jonathan@spreadconcepts.com> 18 19 * configure.in: Make use of dladdr in the function name lookup code a compile time option so 20 systems that don't have dladdr can build the library without needing it. 21 22Mon Mar 5 23:50:52 2012 Jonathan Stanton <jonathan@spreadconcepts.com> 23 24 * include/spu_alarm_types.h (CONF_SYS): Change CONF alarm type which conflicted with OpenSSL 25 to CONF_SYS to avoid the conflict. 26 27Mon Mar 5 18:14:22 2012 Jonathan Stanton <jonathan@spreadconcepts.com> 28 29 * src/memory.c (Mem_init_status): Remove Mem_init_status function as it is hacked in 30 to support only certain code bases and is not even used by them. If detailed memory 31 stats are needed by an application we will add in a better way to access. 32 33Mon Mar 5 17:21:14 2012 Jonathan Stanton <jonathan@spreadconcepts.com> 34 35 * src/memory.c (Mem_init_object): Add "obj_name" field to Mem_init_object() to provide a 36 nice name to print in error messages. This replaces the hard-coded string names in 37 Objnum_to_String(). This is a API change. 38 39March 04, 2012 40-------------- 41Complete changes to add new independant configure based build system for the library, with support for windows and autoconf systems. 42 43All header files are now safe to include in other code (do not directly include any configure generated defines) and have been moved to a separate include directory. The system dependant information that is determined by configure is included in the headers under the SPU_ namespace and only for the specific information required for the public API headers. These headers are also usable by the library implementation code by simply including them into .c files after the normal arch.h is included 44 45Unneeded or obsolete code has been removed from the headers. 46 47 48January 30, 2012 49---------------- 50To that baseline we added the following features: 51 52 - Monitoring slow events (ones that take too long) in the evenst code and providing an API to access the data about them. 53 - Using a monotonic clock in the events code when one is available. If not it falls back to the previous methods. 54 - New E_in_queue() function to query whether a scheduled event is already in the event system. 55 - Adding abilty for Alarm calls to be pushed through a queue to another thread for writing to disk. This takes slow disk IO out of the Alarm fastpath. 56 - Better multicast routing handling in data_link.c 57 - Added NO_LOOP option to datalink channel creation function to prevent user from recieving their own multicast packets back in DL_recv. 58 - Added reference counting to memory.c allocated objects. Not used by default, but can be activated on an object-by-object basis with the new API functions. 59 - Added Windows implmentation of sock_strerror() and generic implementation of strerror(). 60 - John Schultz's rewrite of alarm.c with lots of clean ups. 61 - Add realtime alerting hook to alarms. 62 - Change to high precision timestamp capability of Alarm, it is now enabled by Alarm_enable_timestamp_high_res() function instaed of Alarm_enable_precise_timestamps(). 63 + all changes in Spread changelog from version 4.1 until those committed on 1/28/2012. 64 65January 20,2012 66--------------- 67Baseline is Spread 4.1 release version of following source files and their corresponding headers: 68 events.c 69 data_link.c 70 alarm.c 71 memory.c 72 73 and the required headers and build files for the configure scripts and portability headers. 74