diff options
author | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2002-10-30 17:51:13 +0000 |
---|---|---|
committer | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2002-10-30 17:51:13 +0000 |
commit | 7e1601a85ba1f6640c717a02a64a136da23e7165 (patch) | |
tree | ed576d246baba59232957bbb0e71fca8186b40eb /src/xine-engine/xine_internal.h | |
parent | c0a6fe55488467a5ceaeb2073b99e9503b3031db (diff) | |
download | xine-lib-7e1601a85ba1f6640c717a02a64a136da23e7165.tar.gz xine-lib-7e1601a85ba1f6640c717a02a64a136da23e7165.tar.bz2 |
- add mutex on seeking and avoid overuse of sched_yield
CVS patchset: 3102
CVS date: 2002/10/30 17:51:13
Diffstat (limited to 'src/xine-engine/xine_internal.h')
-rw-r--r-- | src/xine-engine/xine_internal.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/xine-engine/xine_internal.h b/src/xine-engine/xine_internal.h index 1eb4b5fae..0beb014ae 100644 --- a/src/xine-engine/xine_internal.h +++ b/src/xine-engine/xine_internal.h @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: xine_internal.h,v 1.109 2002/10/29 16:02:54 mroi Exp $ + * $Id: xine_internal.h,v 1.110 2002/10/30 17:51:13 miguelfreitas Exp $ * */ @@ -211,6 +211,7 @@ struct xine_stream_s { pthread_t demux_thread; int demux_thread_running; pthread_mutex_t demux_lock; + int demux_action_pending; int err; }; |