diff options
| author | Andrew Stitcher <astitcher@apache.org> | 2008-11-07 16:20:24 +0000 |
|---|---|---|
| committer | Andrew Stitcher <astitcher@apache.org> | 2008-11-07 16:20:24 +0000 |
| commit | 69f969e0f771c0197ad24a00311ecaa78debe4e0 (patch) | |
| tree | 552f639f58818705e963ea87c5f2110e7ea16b05 /cpp/src/qpid/sys/posix | |
| parent | fbb5736c3d32ef829977be6bd598450fc8bb63d5 (diff) | |
| download | qpid-python-69f969e0f771c0197ad24a00311ecaa78debe4e0.tar.gz | |
QPID-1438: Before registering the rdma daemon transport plugin check
whether there are any rdma devices - if not don't register
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@712182 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/sys/posix')
| -rw-r--r-- | cpp/src/qpid/sys/posix/AsynchIO.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/cpp/src/qpid/sys/posix/AsynchIO.cpp b/cpp/src/qpid/sys/posix/AsynchIO.cpp index 569cafcb34..50c971a181 100644 --- a/cpp/src/qpid/sys/posix/AsynchIO.cpp +++ b/cpp/src/qpid/sys/posix/AsynchIO.cpp @@ -42,13 +42,12 @@ namespace { struct StaticInit { StaticInit() { - /** * Make *process* not generate SIGPIPE when writing to closed * pipe/socket (necessary as default action is to terminate process) */ ::signal(SIGPIPE, SIG_IGN); - }; + }; } init; /* |
