2000-11-11 15:13:50 +00:00
|
|
|
/* GStreamer
|
2000-12-28 22:12:02 +00:00
|
|
|
* Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
|
|
|
|
* 2000 Wim Taymans <wtay@chello.be>
|
|
|
|
*
|
|
|
|
* cothreads.h: Header for cothreading routines
|
2000-11-11 15:13:50 +00:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 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
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2000-01-30 09:03:00 +00:00
|
|
|
#ifndef __COTHREADS_H__
|
|
|
|
#define __COTHREADS_H__
|
|
|
|
|
2000-11-11 15:13:50 +00:00
|
|
|
#include <glib.h>
|
2000-01-30 09:03:00 +00:00
|
|
|
#include <setjmp.h>
|
|
|
|
|
2001-01-19 22:15:21 +00:00
|
|
|
typedef struct _cothread_state cothread_state;
|
|
|
|
typedef struct _cothread_context cothread_context;
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2000-11-04 18:54:07 +00:00
|
|
|
typedef int (*cothread_func) (int argc,char **argv);
|
2000-01-30 09:03:00 +00:00
|
|
|
|
|
|
|
#define COTHREAD_STARTED 0x01
|
2001-12-20 02:41:34 +00:00
|
|
|
#define COTHREAD_DESTROYED 0x02
|
2000-01-30 09:03:00 +00:00
|
|
|
|
|
|
|
struct _cothread_state {
|
2002-07-08 19:10:11 +00:00
|
|
|
cothread_context *ctx;
|
2002-09-12 18:56:31 +00:00
|
|
|
int cothreadnum;
|
2002-07-08 19:10:11 +00:00
|
|
|
gpointer priv;
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2002-07-08 19:10:11 +00:00
|
|
|
cothread_func func;
|
|
|
|
int argc;
|
|
|
|
char **argv;
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2002-07-08 19:10:11 +00:00
|
|
|
int flags;
|
|
|
|
void *sp;
|
|
|
|
jmp_buf jmp;
|
2002-12-05 01:50:31 +00:00
|
|
|
void *stack_base;
|
|
|
|
unsigned long stack_size;
|
2001-05-25 21:00:07 +00:00
|
|
|
|
2002-07-08 19:10:11 +00:00
|
|
|
int magic_number;
|
2000-01-30 09:03:00 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2002-02-23 13:41:17 +00:00
|
|
|
cothread_context* cothread_context_init (void);
|
|
|
|
void cothread_context_free (cothread_context *ctx);
|
2002-12-14 16:20:41 +00:00
|
|
|
void cothread_context_set_data (cothread_state *cothread,
|
2002-02-23 13:41:17 +00:00
|
|
|
gchar *key, gpointer data);
|
2002-12-14 16:20:41 +00:00
|
|
|
gpointer cothread_context_get_data (cothread_state *cothread, gchar *key);
|
2001-12-20 02:41:34 +00:00
|
|
|
|
2002-02-23 13:41:17 +00:00
|
|
|
cothread_state* cothread_create (cothread_context *ctx);
|
2002-12-14 16:20:41 +00:00
|
|
|
void cothread_free (cothread_state *cothread);
|
|
|
|
void cothread_setfunc (cothread_state *cothread, cothread_func func,
|
2002-02-23 13:41:17 +00:00
|
|
|
int argc, char **argv);
|
2002-12-14 16:20:41 +00:00
|
|
|
void cothread_stop (cothread_state *cothread);
|
2001-12-25 02:15:46 +00:00
|
|
|
|
2002-12-14 16:20:41 +00:00
|
|
|
void cothread_switch (cothread_state *cothread);
|
|
|
|
void cothread_set_private (cothread_state *cothread,
|
2002-02-23 13:41:17 +00:00
|
|
|
gpointer data);
|
2002-12-14 16:20:41 +00:00
|
|
|
gpointer cothread_get_private (cothread_state *cothread);
|
2000-11-06 00:15:51 +00:00
|
|
|
|
2002-12-14 16:20:41 +00:00
|
|
|
void cothread_lock (cothread_state *cothread);
|
|
|
|
gboolean cothread_trylock (cothread_state *cothread);
|
|
|
|
void cothread_unlock (cothread_state *cothread);
|
2001-05-25 21:00:07 +00:00
|
|
|
|
2002-02-23 13:41:17 +00:00
|
|
|
cothread_state* cothread_main (cothread_context *ctx);
|
|
|
|
cothread_state* cothread_current_main (void);
|
|
|
|
cothread_state* cothread_current (void);
|
2000-01-30 09:03:00 +00:00
|
|
|
|
|
|
|
#endif /* __COTHREAD_H__ */
|