gstinfo: clean up function pointer names hashtable
[platform/upstream/gstreamer.git] / gst / gstpoll.h
index 3a9e135..660f934 100644 (file)
@@ -17,8 +17,8 @@
  *
  * You should have received a copy of the GNU Library General Public
  * License along with this library; if not, write to the
- * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
- * Boston, MA 02111-1307, USA.
+ * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
+ * Boston, MA 02110-1301, USA.
  */
 
 #ifndef __GST_POLL_H__
@@ -34,7 +34,7 @@ G_BEGIN_DECLS
 /**
  * GstPoll:
  *
- * A set of file descriptors.
+ * A set of file/network descriptors.
  */
 typedef struct _GstPoll GstPoll;
 
@@ -59,51 +59,74 @@ typedef struct {
  * be assigned to a variable. In that case you have to use
  * gst_poll_fd_init().
  */
-#define GST_POLL_FD_INIT { -1, -1 }
+#define GST_POLL_FD_INIT  { -1, -1 }
 
-/**
- * GstPollMode:
- * @GST_POLL_MODE_AUTO: choose method automatically
- * @GST_POLL_MODE_SELECT: use select() when waiting
- * @GST_POLL_MODE_PSELECT: use pselect() when waiting
- * @GST_POLL_MODE_POLL: use poll() when waiting
- * @GST_POLL_MODE_PPOLL: use ppoll() when waiting
- *
- * Which method to use when waiting for a set of file descriptors.
- */
-typedef enum {
-  GST_POLL_MODE_AUTO,
-  GST_POLL_MODE_SELECT,
-  GST_POLL_MODE_PSELECT,
-  GST_POLL_MODE_POLL,
-  GST_POLL_MODE_PPOLL
-} GstPollMode;
-
-GstPoll*        gst_poll_new              (GstPollMode mode, gboolean controllable);
+GST_API
+GstPoll*        gst_poll_new              (gboolean controllable) G_GNUC_MALLOC;
+
+GST_API
+GstPoll*        gst_poll_new_timer        (void) G_GNUC_MALLOC;
+
+GST_API
 void            gst_poll_free             (GstPoll *set);
 
-void            gst_poll_set_mode         (GstPoll *set, GstPollMode mode);
-GstPollMode     gst_poll_get_mode         (const GstPoll *set);
+GST_API
+void            gst_poll_get_read_gpollfd (GstPoll *set, GPollFD *fd);
 
+GST_API
 void            gst_poll_fd_init          (GstPollFD *fd);
 
+GST_API
 gboolean        gst_poll_add_fd           (GstPoll *set, GstPollFD *fd);
+
+GST_API
 gboolean        gst_poll_remove_fd        (GstPoll *set, GstPollFD *fd);
 
+GST_API
 gboolean        gst_poll_fd_ctl_write     (GstPoll *set, GstPollFD *fd, gboolean active);
+
+GST_API
 gboolean        gst_poll_fd_ctl_read      (GstPoll *set, GstPollFD *fd, gboolean active);
 
+GST_API
+gboolean        gst_poll_fd_ctl_pri       (GstPoll *set, GstPollFD *fd, gboolean active);
+
+GST_API
+void            gst_poll_fd_ignored       (GstPoll *set, GstPollFD *fd);
+
+GST_API
 gboolean        gst_poll_fd_has_closed    (const GstPoll *set, GstPollFD *fd);
+
+GST_API
 gboolean        gst_poll_fd_has_error     (const GstPoll *set, GstPollFD *fd);
+
+GST_API
 gboolean        gst_poll_fd_can_read      (const GstPoll *set, GstPollFD *fd);
+
+GST_API
 gboolean        gst_poll_fd_can_write     (const GstPoll *set, GstPollFD *fd);
 
+GST_API
+gboolean        gst_poll_fd_has_pri       (const GstPoll *set, GstPollFD *fd);
+
+GST_API
 gint            gst_poll_wait             (GstPoll *set, GstClockTime timeout);
 
+GST_API
 gboolean        gst_poll_set_controllable (GstPoll *set, gboolean controllable);
+
+GST_API
 void            gst_poll_restart          (GstPoll *set);
+
+GST_API
 void            gst_poll_set_flushing     (GstPoll *set, gboolean flushing);
 
+GST_API
+gboolean        gst_poll_write_control    (GstPoll *set);
+
+GST_API
+gboolean        gst_poll_read_control     (GstPoll *set) G_GNUC_WARN_UNUSED_RESULT;
+
 G_END_DECLS
 
 #endif /* __GST_POLL_H__ */