Skip to content
  1. Jul 15, 2016
  2. Jul 31, 2014
  3. Jun 27, 2014
  4. May 14, 2013
  5. Feb 13, 2013
  6. Sep 11, 2011
  7. Jan 11, 2011
  8. Oct 06, 2010
  9. Sep 28, 2010
  10. Apr 22, 2010
  11. Mar 30, 2010
  12. Oct 28, 2009
  13. May 11, 2009
  14. Mar 05, 2009
  15. Jan 09, 2009
  16. Jan 05, 2009
    • Tor Lillqvist's avatar
      Bug 547885 - ORBit2 should not call g_thread_init() itself as it is · c30eb95d
      Tor Lillqvist authored
      2009-01-05  Tor Lillqvist  <tml@novell.com>
      
      	Bug 547885 - ORBit2 should not call g_thread_init() itself as it
      	is usually too late
      
      	* src/linc.c (link_init): Revert change below. Do call
      	g_thread_init(). We don't care what the GLib documentation
      	says. If this potentially late call of g_thread_init() causes
      	problems on some non-Linux platforms, that is the
      	problem of whoever is porting or writing code for that platform,
      	and they need to make sure they call g_thread_init(NULL) very
      	early. Hooray for code working by accident!
      
      
      svn path=/trunk/; revision=2106
      c30eb95d
  17. Dec 15, 2008
    • Tor Lillqvist's avatar
      Bug 547885 - ORBit2 should not call g_thread_init() itself as it is · 0a913196
      Tor Lillqvist authored
      2008-12-15  Tor Lillqvist  <tml@novell.com>
      
      	Bug 547885 - ORBit2 should not call g_thread_init() itself as it
      	is usually too late
      
      	* src/orb/GIOP/giop.c (giop_init): Don't assume that link_init()
      	managed to actually take threads into use if requested to. See
      	linc2/ChangeLog. Check with giop_thread_safe().
      
      	* test/everything/client.c (main)
      	* test/everything/server.c (main)
      	* test/poa/poatest-basic-shell.c (main)
      	* test/test-corbaloc.c (main) 
      	* test/test-dynany.c (main)
      	* test/test-giop.c (main)
      	* test/test-mem.c (main)
      	* test/test-performance.c (main)
      	* test/timeout-client.c (main)
      	* test/timeout-server.c (main): Call g_thread_init(NULL).
      
      	* linc2/src/linc.c (link_init): Don't call g_thread_init()
      	here, it's way too late. g_thread_init() must be the first
      	GLib function called in a program if it is called at
      	all. Instead, if thread support is requested but
      	g_thread_init() has not been called, print a warning and
      	continue without threads.
      
      
      svn path=/trunk/; revision=2105
      0a913196
  18. Dec 09, 2008
    • Kjartan Maraas's avatar
      Fix glib single includes. Patch from Przemysław Grzegorczyk. Closes bug · 71b10676
      Kjartan Maraas authored
      2008-12-09  Kjartan Maraas  <kmaraas@gnome.org>
      
      	* src/services/imodule/orbit-imodule-libidl-utils.h:
      	* src/services/imodule/orbit-imodule-utils.h:
      	* test/everything/client.c: (wait_until_done):
      	Fix glib single includes. Patch from Przemysław Grzegorczyk.
      	Closes bug #563700.
      
      svn path=/trunk/; revision=2104
      71b10676
  19. Dec 01, 2008
  20. Oct 17, 2008
    • Cosimo Cecchi's avatar
      Enforce deprecated CFLAGS only under maintainer mode. · 369dfa85
      Cosimo Cecchi authored
      2008-10-17  Cosimo Cecchi  <cosimoc@gnome.org>
      
      	* configure.in:
      	Enforce deprecated CFLAGS only under maintainer mode.
      
      svn path=/trunk/; revision=2102
      369dfa85
    • Cosimo Cecchi's avatar
      Use and enforce single GLib includes. · 2b083e17
      Cosimo Cecchi authored
      2008-10-17  Cosimo Cecchi  <cosimoc@gnome.org>
      
      	* configure.in:
      	* src/idl-compiler/orbit-idl-main.c:
      	* src/orb/orb-core/orbit-small.c:
      	* src/orb/orb-core/orbit-typelib.c:
      	* src/orb/poa/poa-macros.h:
      	* src/orb/poa/poa-private.h:
      	* src/orb/util/orbit-purify.h:
      	* src/services/name/boot.c:
      	Use and enforce single GLib includes.
      
      svn path=/trunk/; revision=2101
      2b083e17
  21. Oct 03, 2008
    • Kjartan Maraas's avatar
      Fix missing format specifiers and const. Closes bug #554564. · d83e83f5
      Kjartan Maraas authored
      2008-10-03  Kjartan Maraas  <kmaraas@gnome.org>
      
      	* src/idl-compiler/orbit-idl-c-utils.c: (orbit_cbe_write_typespec),
      	(orbit_cbe_write_param_typespec_raw):
      	* src/orb/orb-core/corba-orb.c: Fix missing format specifiers
      	and const. Closes bug #554564.
      
      svn path=/trunk/; revision=2099
      d83e83f5
  22. Oct 02, 2008
    • Tor Lillqvist's avatar
      Do simple checks for loopback addresses first before doing any · dcd92651
      Tor Lillqvist authored
      2008-10-02  Tor Lillqvist  <tml@novell.com>
      
      	* src/linc-protocols.c (link_protocol_is_local_ipv46): Do simple
      	checks for loopback addresses first before doing any
      	gethostbyname(). Avoids superfluous potential DNS lookups.
      
      
      svn path=/trunk/; revision=2098
      dcd92651
    • Tor Lillqvist's avatar
      Always turn on the debug printout possibility on Windows. · e68be35f
      Tor Lillqvist authored
      2008-10-02  Tor Lillqvist  <tml@novell.com>
      
      	* linc2/src/linc-debug.h: Always turn on the debug printout possibility
      	on Windows.
      
      	* linc2/src/Makefile.am: Don't use -DGNU_SOURCE on Windows as it
      	confuses newest mingw headers.
      
      
      svn path=/trunk/; revision=2096
      e68be35f