Changeset 670cfc5ba336c4ad15e1d79518d77cf68d9f2dbd

Show
Ignore:
Timestamp:
09/02/08 22:10:04 (8 months ago)
Author:
Rémi Denis-Courmont <rem@videolan.org>
git-committer:
Rémi Denis-Courmont <rem@videolan.org> 1202591404 +0000
git-parent:

[64f00cf6a017e766ccc1b2b9d094d67a7c0c6cee]

git-author:
Rémi Denis-Courmont <rem@videolan.org> 1202591404 +0000
Message:

Use the exception set in poll().
This is a theoretical bug fix, as POLLPRI is not used anywhere in VLC.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • src/network/poll.c

    r99fab90 r670cfc5  
    6666    } 
    6767 
    68     val = select (val + 1, &rdset, &wrset, NULL
     68    val = select (val + 1, &rdset, &wrset, &exset
    6969                  (timeout >= 0) ? &tv : NULL); 
    7070    if (val == -1)