Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 95264 Details for
Bug 144842
xmms-pipe does not work with xosd or xmms-crossfade plugins
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Patch to enclose select() into loop.
signalbreak.patch (text/plain), 426 bytes, created by
Róbert Čerňanský
on 2006-08-28 03:11:50 UTC
(
hide
)
Description:
Patch to enclose select() into loop.
Filename:
MIME Type:
Creator:
Róbert Čerňanský
Created:
2006-08-28 03:11:50 UTC
Size:
426 bytes
patch
obsolete
>--- xmmspipe-0.5.3/xmmspipe.c.orig 2003-02-25 01:48:02.000000000 +0100 >+++ xmmspipe-0.5.3/xmmspipe.c 2006-08-28 11:26:11.000000000 +0200 >@@ -134,5 +134,8 @@ > //assert(is_controlpipe); > FD_SET(controlpipe[0], &set); >- status = select(maxfd + 1, &set, NULL, NULL, NULL); >+ do { >+ errno = 0; >+ status = select(maxfd + 1, &set, NULL, NULL, NULL); >+ } while (status == -1 && errno == EINTR); > if (status == -1) break; >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 144842
: 95264 |
95265