X-Git-Url: http://git.silcnet.org/gitweb/?a=blobdiff_plain;f=CHANGES.RUNTIME;h=2a62d8f996abc3bfda712f766a6b05687f3e7390;hb=42cc827e60ddf50ea201e8984f8dd0e57372170e;hp=725ea70e963924777188e6891ca343f1feb76480;hpb=407862c4607dcbdfd0b3e6e560e2c90eadf3d544;p=crypto.git diff --git a/CHANGES.RUNTIME b/CHANGES.RUNTIME index 725ea70e..2a62d8f9 100644 --- a/CHANGES.RUNTIME +++ b/CHANGES.RUNTIME @@ -1,3 +1,73 @@ +Sat Sep 1 12:09:32 EEST 2007 Pekka Riikonen + + * Rewrote parts of the SILC Atomic API to not use volatile + members in structures but to handle the memory accesses + volatily, the right way to do it. Affected file is + lib/silcutil/silcatomic.h. + + * Added silc_timer_tick and silc_timer_synchronize functions + to SILC Timer API. Affected files are + lib/silcutil/silctimer.[ch] and silctimer_i.h. + + * Use clock_gettime in place of gettimeofday, if it is + available. Affected files are configure.ad and + lib/silcutil/unix/silcunixutil.c. + + * Added silc_offsetof, silc_likely and silc_unlikely to public + API. Added silc_attribute compiler specific definition. + Affected file is lib/silcutil/silctypes.h. + + * Added silc_prefetch and silc_prefetch_block functions that + provide routines for prefetching data to CPU cache. Affected + file is lib/silcutil/silctypes.h. + + * Added --with-alignment for specifying default memory alignment + used in the compiled code. Currently only SilcStack respects + this value. Affected files are lib/configure.ad, + lib/silcutil/silcstack_i.h and includes/silc.h.in. + +Tue Aug 7 21:00:00 EEST 2007 Pekka Riikonen + + * Fixed alignment issues on 64-bit CPUs. Affected files are + lib/silcutil/silcschedule.c and unix/silcunixschedule.c. + +Sat Aug 4 19:09:14 EEST 2007 Pekka Riikonen + + * Added assembler optimized versions of SILC_[GET|PUT]XX_MSB + macros, and SILC_SWAB_XX macros. Added new functions + silc_rol, silc_ror, silc_rol64 and silc_ror64, all of which + have assembler optimizations also. Affected file is + lib/silcutil/silctypes.h. + +Thu Jul 26 18:13:59 EEST 2007 Pekka Riikonen + + * Changed thread pool call queues thread specific and changed + queues to be consumed in last-in-first-out order. These + are optimizations to the thread pool. Affected file is + lib/silcutil/silcthread.c. + +Wed Jul 25 19:32:41 EEST 2007 Pekka Riikonen + + * Added silc_mime_assembler_purge to lib/silcutil/silcmime.[ch] + to purge unfinished fragments from MIME assembler. + +Sat Jul 21 14:47:28 EEST 2007 Pekka Riikonen + + * Added silc_data2hex and silc_hex2data to + lib/silcutil/silcutil.[ch]. + +Thu Jul 19 17:07:02 EEST 2007 Pekka Riikonen + + * Added silc_buffer_strchr to lib/silcutil/silcbuffer.h. + +Tue Jul 17 20:10:41 EEST 2007 Pekka Riikonen + + * Added silc_hexdump to lib/silcutil/silcutil.[ch]. + +Fri Jul 13 23:01:45 EEST 2007 Pekka Riikonen + + * Added SILC_GET32_X_MSB macro to lib/silcutil/silctypes.h. + Wed Jul 11 17:10:11 EEST 2007 Pekka Riikonen * Added SILC Timer API to lib/silcutil/silctimer.[ch],