<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/glib.git/tests/onceinit.c, branch require-python34</title>
<subtitle>gitlab.gnome.org: GNOME/glib.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/glib.git/'/>
<entry>
<title>Remove a bunch of lingering g_thread_init()</title>
<updated>2013-06-01T03:03:19+00:00</updated>
<author>
<name>Ryan Lortie</name>
<email>desrt@desrt.ca</email>
</author>
<published>2013-05-30T04:04:05+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/glib.git/commit/?id=210b1f8b4230b881d1c2e4a9e7dac571c967e091'/>
<id>210b1f8b4230b881d1c2e4a9e7dac571c967e091</id>
<content type='text'>
After this patch, there is but one remaining use of g_thread_init(),
which is in tests/slice-threadinit.c, a testcase dedicated to testing
the functionality of gslice across a g_thread_init() boundary.

This testcase is pretty meaningless these days... probably we should
delete it.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
After this patch, there is but one remaining use of g_thread_init(),
which is in tests/slice-threadinit.c, a testcase dedicated to testing
the functionality of gslice across a g_thread_init() boundary.

This testcase is pretty meaningless these days... probably we should
delete it.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix more warning-addition fallout</title>
<updated>2012-11-02T16:27:19+00:00</updated>
<author>
<name>Simon McVittie</name>
<email>simon.mcvittie@collabora.co.uk</email>
</author>
<published>2012-11-02T15:45:14+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/glib.git/commit/?id=837db1a026a451f2785be18593bf3fa631acabd6'/>
<id>837db1a026a451f2785be18593bf3fa631acabd6</id>
<content type='text'>
I'm normally a big fan of small atomic commits, but I also want to get
things done this afternoon...

Bug: https://bugzilla.gnome.org/show_bug.cgi?id=687441
Reviewed-by: Colin Walters &lt;walters@verbum.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
I'm normally a big fan of small atomic commits, but I also want to get
things done this afternoon...

Bug: https://bugzilla.gnome.org/show_bug.cgi?id=687441
Reviewed-by: Colin Walters &lt;walters@verbum.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove g_mutex_new()/g_cond_new() in testcases</title>
<updated>2011-10-04T23:35:27+00:00</updated>
<author>
<name>Ryan Lortie</name>
<email>desrt@desrt.ca</email>
</author>
<published>2011-10-04T23:04:41+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/glib.git/commit/?id=6f343ca548af912e7ea6b0a35f5e12c8cb820126'/>
<id>6f343ca548af912e7ea6b0a35f5e12c8cb820126</id>
<content type='text'>
These were the last users of the dynamic allocation API.

Keep the uses in glib/tests/mutex.c since this is actually meant to test
the API (which has to continue working, even if it is deprecated).

https://bugzilla.gnome.org/show_bug.cgi?id=660739
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
These were the last users of the dynamic allocation API.

Keep the uses in glib/tests/mutex.c since this is actually meant to test
the API (which has to continue working, even if it is deprecated).

https://bugzilla.gnome.org/show_bug.cgi?id=660739
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove deprecated atomic functions from tests</title>
<updated>2011-06-06T04:30:02+00:00</updated>
<author>
<name>Matthias Clasen</name>
<email>mclasen@redhat.com</email>
</author>
<published>2011-06-06T04:30:02+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/glib.git/commit/?id=1f022a88d4e46c1297d78a73c9331cd2ce2af53b'/>
<id>1f022a88d4e46c1297d78a73c9331cd2ce2af53b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>prevent race covered by g_once_init_enter(), by checking for previous</title>
<updated>2007-08-14T00:05:52+00:00</updated>
<author>
<name>Tim Janik</name>
<email>timj@imendio.com</email>
</author>
<published>2007-08-14T00:05:52+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/glib.git/commit/?id=d5c437081366ba9617c9a23a09d167aede52a8b9'/>
<id>d5c437081366ba9617c9a23a09d167aede52a8b9</id>
<content type='text'>
Tue Aug 14 02:06:10 2007  Tim Janik  &lt;timj@imendio.com&gt;

        * glib/gthread.c (g_once_init_enter_impl): prevent race covered
        by g_once_init_enter(), by checking for previous initializations
        before entering initialisation branch.

        * tests/onceinit.c: added multi-thread/multi-initializer stress test
        using unoptimized g_once_init_enter_impl().



svn path=/trunk/; revision=5701
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Tue Aug 14 02:06:10 2007  Tim Janik  &lt;timj@imendio.com&gt;

        * glib/gthread.c (g_once_init_enter_impl): prevent race covered
        by g_once_init_enter(), by checking for previous initializations
        before entering initialisation branch.

        * tests/onceinit.c: added multi-thread/multi-initializer stress test
        using unoptimized g_once_init_enter_impl().



svn path=/trunk/; revision=5701
</pre>
</div>
</content>
</entry>
<entry>
<title>fixed array size typo.</title>
<updated>2007-08-13T12:30:08+00:00</updated>
<author>
<name>Tim Janik</name>
<email>timj@imendio.com</email>
</author>
<published>2007-08-13T12:30:08+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/glib.git/commit/?id=e0dffd03fb023d518121e3c0829adcadf66f3c8e'/>
<id>e0dffd03fb023d518121e3c0829adcadf66f3c8e</id>
<content type='text'>
Mon Aug 13 14:30:15 2007  Tim Janik  &lt;timj@imendio.com&gt;

        * tests/onceinit.c (main): fixed array size typo.



svn path=/trunk/; revision=5699
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Mon Aug 13 14:30:15 2007  Tim Janik  &lt;timj@imendio.com&gt;

        * tests/onceinit.c (main): fixed array size typo.



svn path=/trunk/; revision=5699
</pre>
</div>
</content>
</entry>
<entry>
<title>test g_once_init_*() before and after g_thread_init() and test concurrency</title>
<updated>2007-08-13T12:25:21+00:00</updated>
<author>
<name>Tim Janik</name>
<email>timj@imendio.com</email>
</author>
<published>2007-08-13T12:25:21+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/glib.git/commit/?id=1ce6d47e3a5efea2211569b97af81a6305eaf13b'/>
<id>1ce6d47e3a5efea2211569b97af81a6305eaf13b</id>
<content type='text'>
Mon Aug 13 14:21:44 2007  Tim Janik  &lt;timj@imendio.com&gt;

        * tests/onceinit.c: test g_once_init_*() before and after
        g_thread_init() and test concurrency resolution.



svn path=/trunk/; revision=5698
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Mon Aug 13 14:21:44 2007  Tim Janik  &lt;timj@imendio.com&gt;

        * tests/onceinit.c: test g_once_init_*() before and after
        g_thread_init() and test concurrency resolution.



svn path=/trunk/; revision=5698
</pre>
</div>
</content>
</entry>
</feed>
