Re: GLib: embedded list implementation?

2007-11-30 Thread muppet
On Nov 30, 2007, at 2:09 PM, Matthew Barnes wrote: What about embedding a GList node at the top of a larger struct, as we do with GObjects? e.g. struct MyNode { GList parent; ... other data ... }; Sure you'd have an unused 'data' pointer in every node, but it might

Re: GLib: embedded list implementation?

2007-11-30 Thread Matthew Barnes
On Fri, 2007-11-30 at 10:41 -0500, Behdad Esfahbod wrote: > > The Linux kernel has a unique, and useful, doubly-linked list > > implementation that I find myself constantly copying into the userspace > > programs that I write. As a frequent user of GLib in my console-based > > and server applic

Re: GLib: embedded list implementation?

2007-11-30 Thread Behdad Esfahbod
On Thu, 2007-11-29 at 10:30 -0500, Jeff Garzik wrote: > Greetings from pre-2000 GLib contributor :) Welcome! > The Linux kernel has a unique, and useful, doubly-linked list > implementation that I find myself constantly copying into the userspace > programs that I write. As a frequent user of

Re: Announce: gio merged

2007-11-30 Thread Hans Breuer
On 28.11.2007 09:24, Alexander Larsson wrote: > On Tue, 2007-11-27 at 22:34 +0100, Hans Breuer wrote: >> On 26.11.2007 17:25, Alexander Larsson wrote: >>> I just commited gio to the glib svn module. As this is a sort of large >>> chunk of work I expect there to be some temporary issues to work out.

Re: Gtk on Embedded Device Query

2007-11-30 Thread Ross Burton
On Fri, 2007-11-30 at 17:41 +0530, Saroj Kumar wrote: > Now I am planning to run gtk+ on X-server. I started hunting for > X-server and found TinyX. > Now how to cross-compile X-server? Is there any document on it. > > I downloaded X-server from Xfree86 ftp site. Plz. guide me on > cross-compilin

Re: Gtk on Embedded Device Query

2007-11-30 Thread Saroj Kumar
Hi, Thanks for the suggestions. I have two options left now. 1. Running Gtk+ on top of X11 2. Testing Pango and Cairo modules on directfb itself. Now I am planning to run gtk+ on X-server. I started hunting for X-server and found TinyX. Now how to cross-compile X-server? Is there any docum

Re: Gtk on Embedded Device Query

2007-11-30 Thread Saroj Kumar
Hi Sven, Thanks for the suggestions. I have two options left now. Now I am planning to run gtk+ on X-server. I started hunting for X-server and found TinyX. Now how to cross-compile X-server? Is there any document on it. I downloaded X-server from Xfree86 ftp site. Plz. guide me on cross-compi

Re: Gtk on Embedded Device Query

2007-11-30 Thread Attilio Fiandrotti
Sven Neumann wrote: > Hi, > > On Thu, 2007-11-29 at 19:44 +0530, Saroj Kumar wrote: > >> Anyhow I have to use this system for my application. I agree that this >> system is having slow processor speed. But lower than this >> configuration, processors running on mobile devices performing well in >

Re: SoupInputStream / trying out gio

2007-11-30 Thread Alexander Larsson
On Thu, 2007-11-29 at 13:18 -0500, Dan Winship wrote: > OK, I've written a GInputStream subclass using libsoup to download HTTP > responses. It's not beautiful (because it has to convert between > libsoup's push API and gio's pull API), but it shows that it can work > for gvfs. The biggest problem