Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
qwaylanddatasource.cpp
Go to the documentation of this file.
1// Copyright (C) 2016 The Qt Company Ltd.
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
3
9
10#include <QtCore/QFile>
11
12#include <QtCore/QDebug>
13
14#include <unistd.h>
15#include <signal.h>
16#include <fcntl.h>
17
18QT_BEGIN_NAMESPACE
19
20namespace QtWaylandClient {
21
33
38
43
45{
47 if (!content.isEmpty()) {
48 // Create a sigpipe handler that does nothing, or clients may be forced to terminate
49 // if the pipe is closed in the other end.
51 action.sa_handler = SIG_IGN;
53 action.sa_flags = 0;
54
55 sigaction(SIGPIPE, &action, &oldAction);
56 // Some compositors (e.g., mutter) make fd with O_NONBLOCK.
57 // Since wl_data_source.send describes that fd is closed here,
58 // it should be done in a loop and don't have any advantage.
59 // Blocking operation will be used.
60 // According to fcntl(2), FSETFL ignores O_WRONLY. So this
61 // call will just remove O_NONBLOCK.
62 fcntl(fd, F_SETFL, O_WRONLY);
65 sigaction(SIGPIPE, &oldAction, nullptr);
66 }
67 close(fd);
68}
69
75
88
93
99
100}
101
102QT_END_NAMESPACE
103
104#include "moc_qwaylanddatasource_p.cpp"