From 3f030202f2fe5ebf69b02c886512b6781c8e4f55 Mon Sep 17 00:00:00 2001 From: Martin Sustrik Date: Thu, 16 Feb 2012 10:09:44 +0900 Subject: xs_poll implementation moved to a separate file Signed-off-by: Martin Sustrik --- src/upoll.hpp | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 src/upoll.hpp (limited to 'src/upoll.hpp') diff --git a/src/upoll.hpp b/src/upoll.hpp new file mode 100644 index 0000000..58c9e0f --- /dev/null +++ b/src/upoll.hpp @@ -0,0 +1,32 @@ +/* + Copyright (c) 2012 250bpm s.r.o. + Copyright (c) 2012 Other contributors as noted in the AUTHORS file + + This file is part of Crossroads project. + + Crossroads 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 version 3 of the License, or + (at your option) any later version. + + Crossroads 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 program. If not, see . +*/ + +#ifndef __XS_POLLING_HPP_INCLUDED__ +#define __XS_POLLING_HPP_INCLUDED__ + +#include "../include/xs.h" + +namespace xs +{ + // Underlying function for xs_poll. + int upoll (xs_pollitem_t *items_, int nitems_, long timeout_); +} + +#endif -- cgit v1.2.3