9d7a6ffc0b9ccae3bb3db62682fdc41af07c6dcd
[silc.git] / CHANGES.RUNTIME
1 Thu Dec 13 17:37:21 EET 2007  Pekka Riikonen <priikone@silcnet.org>
2
3         * Clear the locked flag before unlocking mutex, not after.
4           Affected files are lib/silcutil/unix/silcunixthread.c and
5           lib/silcutil/symbian/silcsymbianthread.c.
6
7         * Fixed thread pool locking dealing with thread stopping to
8           prevent deadlocks and crashes.  Affected file is 
9           lib/silcutil/silcthread.c.
10
11 Tue Nov  6 17:09:42 EET 2007  Pekka Riikonen <priikone@silcnet.org>
12
13         * Added '%@' formatting to silc_snprintf and variants.  It
14           can be used to render data and structures.  Affected files
15           are lib/silcutil/silcsnprintf.[ch].
16
17 Sat Oct 27 18:12:40 EEST 2007  Pekka Riikonen <priikone@silcnet.org>
18
19         * Added silc_net_tcp_create_listener2.  Affected files are
20           lib/silcutil/silcnet.h and platform specific implementation.
21
22 Sat Sep  1 12:09:32 EEST 2007  Pekka Riikonen <priikone@silcnet.org>
23
24         * Rewrote parts of the SILC Atomic API to not use volatile
25           members in structures but to handle the memory accesses
26           volatily, the right way to do it.  Affected file is
27           lib/silcutil/silcatomic.h.
28
29         * Added silc_timer_tick and silc_timer_synchronize functions
30           to SILC Timer API.  Affected files are 
31           lib/silcutil/silctimer.[ch] and silctimer_i.h.
32
33         * Use clock_gettime in place of gettimeofday, if it is
34           available.  Affected files are configure.ad and
35           lib/silcutil/unix/silcunixutil.c.
36
37         * Added silc_offsetof, silc_likely and silc_unlikely to public
38           API.  Added silc_attribute compiler specific definition.
39           Affected file is lib/silcutil/silctypes.h.
40
41         * Added silc_prefetch and silc_prefetch_block functions that
42           provide routines for prefetching data to CPU cache.  Affected
43           file is lib/silcutil/silctypes.h.
44
45         * Added --with-alignment for specifying default memory alignment
46           used in the compiled code.  Currently only SilcStack respects
47           this value.  Affected files are lib/configure.ad,
48           lib/silcutil/silcstack_i.h and includes/silc.h.in.
49
50 Tue Aug  7 21:00:00 EEST 2007  Pekka Riikonen <priikone@silcnet.org>
51
52         * Fixed alignment issues on 64-bit CPUs.  Affected files are
53           lib/silcutil/silcschedule.c and unix/silcunixschedule.c.
54
55 Sat Aug  4 19:09:14 EEST 2007 Pekka Riikonen <priikone@silcnet.org>
56
57         * Added assembler optimized versions of SILC_[GET|PUT]XX_MSB
58           macros, and SILC_SWAB_XX macros.  Added new functions
59           silc_rol, silc_ror, silc_rol64 and silc_ror64, all of which
60           have assembler optimizations also.  Affected file is
61           lib/silcutil/silctypes.h.
62
63 Thu Jul 26 18:13:59 EEST 2007 Pekka Riikonen <priikone@silcnet.org>
64
65         * Changed thread pool call queues thread specific and changed
66           queues to be consumed in last-in-first-out order.  These
67           are optimizations to the thread pool.  Affected file is
68           lib/silcutil/silcthread.c.
69
70 Wed Jul 25 19:32:41 EEST 2007 Pekka Riikonen <priikone@silcnet.org>
71
72         * Added silc_mime_assembler_purge to lib/silcutil/silcmime.[ch]
73           to purge unfinished fragments from MIME assembler.
74
75 Sat Jul 21 14:47:28 EEST 2007 Pekka Riikonen <priikone@silcnet.org>
76
77         * Added silc_data2hex and silc_hex2data to
78           lib/silcutil/silcutil.[ch].
79
80 Thu Jul 19 17:07:02 EEST 2007 Pekka Riikonen <priikone@silcnet.org>
81
82         * Added silc_buffer_strchr to lib/silcutil/silcbuffer.h.
83
84 Tue Jul 17 20:10:41 EEST 2007 Pekka Riikonen <priikone@silcnet.org>
85
86         * Added silc_hexdump to lib/silcutil/silcutil.[ch].
87
88 Fri Jul 13 23:01:45 EEST 2007  Pekka Riikonen <priikone@silcnet.org>
89
90         * Added SILC_GET32_X_MSB macro to lib/silcutil/silctypes.h.
91
92 Wed Jul 11 17:10:11 EEST 2007  Pekka Riikonen <priikone@silcnet.org>
93
94         * Added SILC Timer API to lib/silcutil/silctimer.[ch],
95           silctimer_i.h, tests/test_silctimer.c.
96
97 Tue Jul 10 20:02:04 EEST 2007  Pekka Riikonen <priikone@silcnet.org>
98
99         * Added queue entry free list to thread pool instead of
100           allocating new entry everytime new entry is needed.  Affected
101           file is lib/silcutil/silcthread.c.
102
103 Mon Jul  9 20:21:13 EEST 2007  Pekka Riikonen <priikone@silcnet.org>
104
105         * Changed thread pool completion callback to SilcTaskCallback so
106           that it can be given directly to destination scheduler.
107           Affected files are lib/silcutil/silcthread.[ch].
108
109 Sun Jul  8 20:20:22 EEST 2007  Pekka Riikonen <priikone@silcnet.org>
110
111         * Moved Base64 routines to lib/silcutil/silcbase64.[ch].  Added
112           SilcStack support to the API.
113
114         * Inherit the lock from parent in SilcStack child.  If child
115           doesn't find stack blocks, check from parent.  Added
116           silc_stack_purge.  Affected file is lib/silcutil/silcstack.c.
117
118 Wed Jul  4 20:20:05 EEST 2007  Pekka Riikonen <priikone@silcnet.org>
119
120         * Unified the SILC_STR_FUNC callback.  Affected files are
121           lib/silcutil/silcbuffmt.[ch].
122
123         * Added SilcStack support to SILC File Util API.  Affected files
124           are lib/silcutil/silcfileutil.[ch].
125
126         * Added SilcStack support to SILC FD Stream API.  Affected files
127           are lib/silcutil/silcfdstream.[ch].
128
129         * Added SilcStack support to SILC Scheduler API.  The scheduler
130           now creates stack always.  It can be retrieved by
131           silc_schedule_get_stack.  Affected files are
132           lib/silcutil/silcschedule.[ch], silcschedule_i.h.
133
134         * Added SilcStack child creation and use multi-thread support.
135           Added OOM handler, silc_stack_set_oom_handler.  Affected
136           files are lib/silcutil/silcstack.[ch].
137
138 Tue Jul  3 22:45:56 EEST 2007  Pekka Riikonen <priikone@silcnet.org>
139
140         * Added concept of child stacks to SilcStack, allowing to create
141           true memory pools using SilcStack.  It is now possible to
142           create childs from the parent, without consuming the parent's
143           memory.  The child's memory is returned back to parent when
144           it is freed.  Affected files are lib/silcutil/silcstack.[ch],
145           silcstack_i.h.
146
147 Tue Jul  3 18:17:54 EEST 2007  Pekka Riikonen <priikone@silcnet.org>
148
149         * Added SILC DLL API for loading and using shared objects and
150           DLLs.  Affected files are lib/silcutil/sildll.[ch].  Added
151           also test program lib/silcutil/tests/test_silcdll.c.
152
153         * Added SILC Environment manipulation API to
154           lib/silcutil/silcenv.[ch] and test program to
155           lib/silcutil/tests/test_silcenv.c.
156
157         * Renamed silc_hash_table_replace to silc_hash_table_set.
158           Added SilcStack support to SilcHashTable.  Affected files are
159           lib/silcutil/silchashtable.[ch].
160
161         * Added SilcStack support to SilcDList.  Added new function
162           silc_dlist_sinit.  Affected file is lib/silcutil/silcdlist.h.
163
164 Mon Jul  2 21:07:34 EEST 2007  Pekka Riikonen <priikone@silcnet.org>
165
166         * Removed unaligned memory allocation from SilcStack.  Moved
167           silc_stack_malloc and silc_stack_realloc to public API from
168           private API.  Added silc_stack_[set|get]_alignment that is
169           used to get/set memory alignment with SilcStack.  Affected
170           files are lib/silcutil/silcstack.[ch], silcstack_i.h.
171
172         * Added silc_sfree to lib/silcutil/silcmemory.[ch].
173
174         * Removed silc_smalloc_ua and silc_srealloc_ua.  Affected files
175           are lib/silcutil/silcmemory.[ch].
176
177 Mon Jul  2 17:13:51 EEST 2007  Pekka Riikonen <priikone@silcnet.org>
178
179         * Added SILC Thread Pool API to lib/silcutil/silcthread.[ch],
180           and test program in lib/silcutil/tests/test_silcthread.c.
181
182 -----------------------------------------------------------------------------
183
184 For older changes please see the CHANGES file from the CVS tree.