2011-07-25 15:05:03 +02:00
|
|
|
/*
|
|
|
|
* Copyright © 2011 Canonical Limited
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
2017-01-05 12:47:07 +01:00
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2011-07-25 15:05:03 +02:00
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2014-01-23 12:58:29 +01:00
|
|
|
* License along with this library; if not, see <http://www.gnu.org/licenses/>.
|
2011-07-25 15:05:03 +02:00
|
|
|
*
|
|
|
|
* Author: Ryan Lortie <desrt@desrt.ca>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __G_WAKEUP_H__
|
|
|
|
#define __G_WAKEUP_H__
|
|
|
|
|
2011-09-09 20:30:01 +02:00
|
|
|
#include <glib/gpoll.h>
|
|
|
|
|
2011-07-25 15:05:03 +02:00
|
|
|
typedef struct _GWakeup GWakeup;
|
|
|
|
|
2013-01-18 19:27:16 +01:00
|
|
|
GWakeup * g_wakeup_new (void);
|
|
|
|
void g_wakeup_free (GWakeup *wakeup);
|
2011-07-25 15:05:03 +02:00
|
|
|
|
2013-01-18 19:27:16 +01:00
|
|
|
void g_wakeup_get_pollfd (GWakeup *wakeup,
|
|
|
|
GPollFD *poll_fd);
|
|
|
|
void g_wakeup_signal (GWakeup *wakeup);
|
|
|
|
void g_wakeup_acknowledge (GWakeup *wakeup);
|
2011-07-25 15:05:03 +02:00
|
|
|
|
|
|
|
#endif
|