monitor.h revision 2366b8a769b9403fda3c4780c84ad87d07b21d7e
/*
* lxc: linux Container library
*
* (C) Copyright IBM Corp. 2007, 2008
*
* Authors:
* Daniel Lezcano <daniel.lezcano at free.fr>
*
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* 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
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef __LXC_MONITOR_H
#define __LXC_MONITOR_H
#include <limits.h>
#include <poll.h>
#include "conf.h"
typedef enum {
struct lxc_msg {
int value;
};
const char *lxcpath);
const char *lxcpath);
extern int lxc_monitord_spawn(const char *lxcpath);
/*
* Open the monitoring mechanism for a specific container
* The function will return an fd corresponding to the events
* Returns a file descriptor on success, < 0 otherwise
*/
extern int lxc_monitor_open(const char *lxcpath);
/*
* Blocking read for the next container state change
* @fd : the file descriptor provided by lxc_monitor_open
* @msg : the variable which will be filled with the state
* Returns 0 if the monitored container has exited, > 0 if
* data was read, < 0 otherwise
*/
/*
* Blocking read for the next container state change with timeout
* @fd : the file descriptor provided by lxc_monitor_open
* @msg : the variable which will be filled with the state
* @timeout : the timeout in seconds to wait for a state change
* Returns 0 if the monitored container has exited, > 0 if
* data was read, < 0 otherwise
*/
/*
* Blocking read from multiple monitors for the next container state
* change with timeout
* @fds : struct pollfd descripting the fds to use
* @nfds : the number of entries in fds
* @msg : the variable which will be filled with the state
* @timeout : the timeout in seconds to wait for a state change
* Returns 0 if the monitored container has exited, > 0 if
* data was read, < 0 otherwise
*/
int timeout);
#endif