<feed xmlns='http://www.w3.org/2005/Atom'>
<title>ding-libs.git/collection/collection_queue.c, branch master</title>
<subtitle>'D is not GLib' utility libraries [okos' clone]</subtitle>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/okos/public_git/ding-libs.git/'/>
<entry>
<title>Fixing headers</title>
<updated>2013-01-24T07:34:37+00:00</updated>
<author>
<name>Dmitri Pal</name>
<email>dpal@redhat.com</email>
</author>
<published>2012-12-23T18:03:00+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/okos/public_git/ding-libs.git/commit/?id=57faa64667411a3d8eeeeff62b1e659a94ed29cf'/>
<id>57faa64667411a3d8eeeeff62b1e659a94ed29cf</id>
<content type='text'>
Move GNU_SOUCE definition to configure.ac
Change all headers to use config.h.
Move config.h to the top.
Remove errno.h if it is not needed.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Move GNU_SOUCE definition to configure.ac
Change all headers to use config.h.
Move config.h to the top.
Remove errno.h if it is not needed.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixing types in queue and stack interfaces</title>
<updated>2010-06-28T12:38:14+00:00</updated>
<author>
<name>Dmitri Pal</name>
<email>dpal@redhat.com</email>
</author>
<published>2010-06-19T15:18:42+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/okos/public_git/ding-libs.git/commit/?id=74100f356c8b485e6c2b6c462ab42b6b172a676f'/>
<id>74100f356c8b485e6c2b6c462ab42b6b172a676f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>COMMON Fixes to return values, errno, leaks</title>
<updated>2009-08-20T19:47:34+00:00</updated>
<author>
<name>Dmitri Pal</name>
<email>dpal@redhat.com</email>
</author>
<published>2009-08-15T03:04:37+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/okos/public_git/ding-libs.git/commit/?id=2d9c788b5837d2a8db025306322a5a8f63a8c9af'/>
<id>2d9c788b5837d2a8db025306322a5a8f63a8c9af</id>
<content type='text'>
Started looking at the ticket #107 related to
traverse functions. Realized that the return values
are not consistent. That ovelapped with the work
that I wanted to do for ticket #103 - errno cleanup.
So I (across collection, INI and ELAPI):
* Made the return codes consistent (where found)
* Removed errno where it is not needed
While was testing used valgrind and found a nasty
problem when the value was added to collection with
overwriting duplicates the count was decreased improperly.
Fixing collection.c to not decrease count made
valgrind happy. While I was debugging this
I also spotted several build warnings in trace
statements when the " exp ? v1 : v2 " was used.
Fixed those.
In ini_config.c there was a trace stament that used
variable after it was freed. Removed trace stament.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Started looking at the ticket #107 related to
traverse functions. Realized that the return values
are not consistent. That ovelapped with the work
that I wanted to do for ticket #103 - errno cleanup.
So I (across collection, INI and ELAPI):
* Made the return codes consistent (where found)
* Removed errno where it is not needed
While was testing used valgrind and found a nasty
problem when the value was added to collection with
overwriting duplicates the count was decreased improperly.
Fixing collection.c to not decrease count made
valgrind happy. While I was debugging this
I also spotted several build warnings in trace
statements when the " exp ? v1 : v2 " was used.
Fixed those.
In ini_config.c there was a trace stament that used
variable after it was freed. Removed trace stament.
</pre>
</div>
</content>
</entry>
<entry>
<title>Clean up warnings in common/</title>
<updated>2009-07-03T16:36:25+00:00</updated>
<author>
<name>Simo Sorce</name>
<email>ssorce@redhat.com</email>
</author>
<published>2009-07-03T16:19:12+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/okos/public_git/ding-libs.git/commit/?id=83c93245fe1ad9db71e0146b6984d5b7628a455a'/>
<id>83c93245fe1ad9db71e0146b6984d5b7628a455a</id>
<content type='text'>
Fix consts and function declarations
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fix consts and function declarations
</pre>
</div>
</content>
</entry>
<entry>
<title>Changing function names for collection API.</title>
<updated>2009-07-03T00:02:27+00:00</updated>
<author>
<name>Dmitri Pal</name>
<email>dpal@redhat.com</email>
</author>
<published>2009-07-02T16:52:32+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/okos/public_git/ding-libs.git/commit/?id=767ce0e4fdc9dee525561314311a461e77883b9b'/>
<id>767ce0e4fdc9dee525561314311a461e77883b9b</id>
<content type='text'>
Patch prepends prefix "col_" to all
functions related to collection.
This caused some formatiing issues
so the alignement was addressed too.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Patch prepends prefix "col_" to all
functions related to collection.
This caused some formatiing issues
so the alignement was addressed too.
</pre>
</div>
</content>
</entry>
<entry>
<title>Queue and stack APIs using collection.</title>
<updated>2009-07-02T12:16:35+00:00</updated>
<author>
<name>Dmitri Pal</name>
<email>dpal@redhat.com</email>
</author>
<published>2009-07-01T22:22:19+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/okos/public_git/ding-libs.git/commit/?id=0a74051300097be0bbb69f0a6712a07160f200ee'/>
<id>0a74051300097be0bbb69f0a6712a07160f200ee</id>
<content type='text'>
Patch adds two interfaces for stack and queue using
collection as underlaying implementation.
It also fixes a bug in the insterion code -
the unsigned properties were created as long.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Patch adds two interfaces for stack and queue using
collection as underlaying implementation.
It also fixes a bug in the insterion code -
the unsigned properties were created as long.
</pre>
</div>
</content>
</entry>
</feed>
