1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
|
struct gui_data *inst = (struct gui_data *)handle;
/*
* If our child process has exited but not closed, terminate on
* any keypress.
*/
if (inst->exited)
exit(0);
}
static gint idle_exit_func(gpointer data)
{
struct gui_data *inst = (struct gui_data *)data;
int exitcode, close_on_exit;
|
|
|
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
|
struct gui_data *inst = (struct gui_data *)handle;
/*
* If our child process has exited but not closed, terminate on
* any keypress.
*/
if (inst->exited)
cleanup_exit(0);
}
static gint idle_exit_func(gpointer data)
{
struct gui_data *inst = (struct gui_data *)data;
int exitcode, close_on_exit;
|