Changeset 681637abe8ad32a07b614a7f3cd797d089e58fc7
- Timestamp:
- 12/22/07 16:53:38
(9 months ago)
- Author:
- Rémi Denis-Courmont <rem@videolan.org>
- git-committer:
- Rémi Denis-Courmont <rem@videolan.org> 1198338818 +0000
- git-parent:
[e59bea7b82ac4f79a169677d8d9aa753d3d3c10e]
- git-author:
- Rémi Denis-Courmont <rem@videolan.org> 1198338818 +0000
- Message:
Add an error message
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r77ca784 |
r681637a |
|
| 65 | 65 | # include <io.h> |
|---|
| 66 | 66 | # include <fcntl.h> |
|---|
| | 67 | # include <errno.h> /* ENOSYS */ |
|---|
| 67 | 68 | #endif |
|---|
| 68 | 69 | |
|---|
| … | … | |
| 494 | 495 | #ifndef WIN32 |
|---|
| 495 | 496 | if( pipe( pipes ) ) |
|---|
| | 497 | #else |
|---|
| | 498 | errno = ENOSYS; |
|---|
| 496 | 499 | #endif |
|---|
| 497 | 500 | return -1; |
|---|
| re59bea7 |
r681637a |
|
| 1072 | 1072 | if( vlc_object_waitpipe( VLC_OBJECT( host ) ) == -1 ) |
|---|
| 1073 | 1073 | { |
|---|
| | 1074 | msg_Err( host, "signaling pipe error: %m") |
|---|
| 1074 | 1075 | vlc_object_unlock( host ); |
|---|
| 1075 | 1076 | goto error; |
|---|