On 15/05/12 14:45, Tristan Van Berkom wrote:
On Mon, May 14, 2012 at 10:29 PM, James Steward
wrote:
On 15/05/12 11:56, Tristan Van Berkom wrote:
... perhaps it's worth trying an extra call to gtk_widget_queue_resize()
after modifying your table.
I'm trying that. I have
Ooops, forgot to CC the list:
On Thu, May 17, 2012 at 1:43 PM, Rick Berger wrote:
> In GTK+ 2.20, what is the preferred way to wait while polling a flag in
> shared memory every 25 milliseconds in code something like this?
The preferred thing to do is to never use polling for synchronization
of
In GTK+ 2.20, what is the preferred way to wait while polling a flag in
shared memory every 25 milliseconds in code something like this?
gint n;
for( n=10; n && (sharedMemory->flag != 1), n--) {
/* wait 25 milliseconds */
}
if( n == 0 ) {
g_warning("Timed out while waiting for flag");
ret