Changeset 220ff7f6eae997583245d1c90409e3eac65f3cab

Show
Ignore:
Timestamp:
01/03/07 00:52:48 (2 years ago)
Author:
Sigmund Augdal Helberg <sigmunau@videolan.org>
git-committer:
Sigmund Augdal Helberg <sigmunau@videolan.org> 1172706768 +0000
git-parent:

[7bb4a6ef55444f256c11190378e57c430db67afe]

git-author:
Sigmund Augdal Helberg <sigmunau@videolan.org> 1172706768 +0000
Message:

disable clock_nanosleep for mwait for now. Fixes dvd and vob playback
for me.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • src/misc/mtime.c

    r82d6a50 r220ff7f  
    232232void mwait( mtime_t date ) 
    233233{ 
    234 #if defined (HAVE_CLOCK_NANOSLEEP) 
     234#if 0 && defined (HAVE_CLOCK_NANOSLEEP) 
    235235    lldiv_t d = lldiv( date, 1000000 ); 
    236236    struct timespec ts = { d.quot, d.rem * 1000 };