Changeset 670cfc5ba336c4ad15e1d79518d77cf68d9f2dbd
- 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
| r99fab90 |
r670cfc5 |
|
| 66 | 66 | } |
|---|
| 67 | 67 | |
|---|
| 68 | | val = select (val + 1, &rdset, &wrset, NULL, |
|---|
| | 68 | val = select (val + 1, &rdset, &wrset, &exset, |
|---|
| 69 | 69 | (timeout >= 0) ? &tv : NULL); |
|---|
| 70 | 70 | if (val == -1) |
|---|