Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mpd
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Иван Мажукин
mpd
Commits
17eae74c
Commit
17eae74c
authored
Jan 11, 2021
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
system/EventFD: Get() returns FileDescriptor
parent
cd4b673b
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
WakeFD.hxx
src/event/WakeFD.hxx
+4
-0
EventFD.hxx
src/system/EventFD.hxx
+2
-2
No files found.
src/event/WakeFD.hxx
View file @
17eae74c
...
...
@@ -38,7 +38,11 @@ class WakeFD {
public
:
SocketDescriptor
GetSocket
()
const
noexcept
{
#ifdef USE_EVENTFD
return
SocketDescriptor
::
FromFileDescriptor
(
fd
.
Get
());
#else
return
SocketDescriptor
(
fd
.
Get
());
#endif
}
bool
Read
()
noexcept
{
...
...
src/system/EventFD.hxx
View file @
17eae74c
...
...
@@ -44,8 +44,8 @@ public:
*/
EventFD
();
int
Get
()
const
noexcept
{
return
fd
.
Get
()
;
FileDescriptor
Get
()
const
noexcept
{
return
fd
;
}
/**
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment