Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
L
libzmq
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
libzmq
Commits
9bb197e0
Unverified
Commit
9bb197e0
authored
Aug 19, 2019
by
Luca Boccassi
Committed by
GitHub
Aug 19, 2019
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #3613 from TomzBench/mingw-fix
no void pointer to store function pointer
parents
1d21d2f4
e9b67001
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
4 deletions
+21
-4
tomzbench.md
RELICENSE/tomzbench.md
+14
-0
thread.cpp
src/thread.cpp
+7
-4
No files found.
RELICENSE/tomzbench.md
0 → 100644
View file @
9bb197e0
# Permission to Relicense under MPLv2
This is a statement by Thomas Chiantia
that grants permission to relicense its copyrights in the libzmq C++
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2).
A portion of the commits made by the Github handle "tomzbench", with
commit author "Thomas
<Thomas@Altronix.com>
", are copyright of
Thomas Chiantia.
This document hereby grants the libzmq project team to relicense libzmq,
including all past, present and future contributions of the author listed above.
Thomas Chiantia
2019/08/10
src/thread.cpp
View file @
9bb197e0
...
...
@@ -117,11 +117,14 @@ struct thread_info_t
#pragma pack(pop)
}
typedef
struct
_
MY_EXCEPTION_REGISTRATION_RECORD
struct
MY_EXCEPTION_REGISTRATION_RECORD
{
struct
_MY_EXCEPTION_REGISTRATION_RECORD
*
Next
;
void
*
Handler
;
}
MY_EXCEPTION_REGISTRATION_RECORD
;
typedef
EXCEPTION_DISPOSITION
(
NTAPI
*
HandlerFunctionType
)
(
EXCEPTION_RECORD
*
,
void
*
,
CONTEXT
*
,
void
*
);
MY_EXCEPTION_REGISTRATION_RECORD
*
Next
;
HandlerFunctionType
Handler
;
};
static
EXCEPTION_DISPOSITION
NTAPI
continue_execution
(
EXCEPTION_RECORD
*
rec
,
void
*
frame
,
...
...
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