Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
C
capnproto
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
capnproto
Commits
90c04962
Commit
90c04962
authored
Nov 07, 2015
by
Kenton Varda
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #260 from thomaslee/tom_fix_32bit_be_signalfd_values
Fix UnixEventPort value on 32-bit big endian archs
parents
25603271
e01f5390
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
async-unix.c++
c++/src/kj/async-unix.c++
+1
-1
No files found.
c++/src/kj/async-unix.c++
View file @
90c04962
...
...
@@ -458,7 +458,7 @@ static siginfo_t toRegularSiginfo(const struct signalfd_siginfo& siginfo) {
// we write the pointer, we'll end up with the right value for the int? Presumably the
// two fields of signalfd_siginfo are actually extracted from one of these unions
// originally, so actually contain redundant data? Better write some tests...
result
.
si_ptr
=
reinterpret_cast
<
void
*>
(
static_cast
<
uintptr_t
>
(
siginfo
.
s
si_ptr
));
memcpy
(
&
result
.
si_ptr
,
&
siginfo
.
ssi_ptr
,
sizeof
(
result
.
si_ptr
));
break
;
case
SI_TIMER
:
...
...
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