* plugins/debug-manager/plugin.c:
[anjuta-git-plugin.git] / libanjuta / anjuta-children.h
blob2fd238753b11ada9c36cfad59961847fdfe2ea89
1 /* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4 -*- */
2 /*
3 * anjuta-children.h
4 * Copyright (C) 2003 Naba Kumar <naba@gnome.org>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU Library General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
21 #ifndef _ANJUTA_CHILDREN_H_
22 #define _ANJUTA_CHILDREN_H_
24 #include <sys/types.h>
25 #include <sys/wait.h>
26 #include <glib.h>
28 G_BEGIN_DECLS
30 /**
31 * AnjutaChildTerminatedCallback:
32 * @exit_staus: Exit status of the child.
33 * @user_data: User data
35 * Callback function definition for child termination.
37 typedef void (*AnjutaChildTerminatedCallback) (int exit_staus,
38 gpointer user_data);
40 void anjuta_children_register (pid_t pid,
41 AnjutaChildTerminatedCallback ch_terminated,
42 gpointer data);
43 void anjuta_children_unregister (pid_t pid);
44 void anjuta_children_foreach (GFunc cb, gpointer data);
45 void anjuta_children_recover (void);
46 void anjuta_children_finalize(void);
48 G_END_DECLS
50 #endif