Re: [gtk-list] Timers and queries..
- From: Mark Volpe <volpe mark epamail epa gov>
- To: gtk-list redhat com
- Subject: Re: [gtk-list] Timers and queries..
- Date: Tue, 12 Oct 1999 23:14:58 +0000
You need to return FALSE from the timer function to keep
it going and TRUE to stop it. ( Or maybe it's the other way around -
check the docs. ) But anyway, you seem to have a _bare_ return
statement in a function that returns gint, so anything is
liable to happen! Compiling with -Wall would've caught
that, too; make it a permanent fixture in your Makefile! ;-)
Mark
"Sean Cody (TDR-X)" wrote:
>
> I need to execute a call every so often so I though I would add a timeout.
> When I run my program under a solaris box it only executes the timer
> function once then just waits. Though under a win32 box (using gtk+ port)
> it calls the timer function repeatadly as it should... Is there something
> I am doing wrong in terms of the solaris usage? (This is using the same
> code for both platformss)..
>
> gint tick(gpointer data) {
> printf("Tock\n");
> return;
> }
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]