Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
P
paho.mqtt.c
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
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
eclipse
paho.mqtt.c
Commits
e3912c09
Commit
e3912c09
authored
Oct 11, 2013
by
Ian Craggs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix error reporting for mutex calls, bug #419233
parent
baeaf2dc
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
101 additions
and
70 deletions
+101
-70
build.xml
build.xml
+2
-2
MQTTAsync.c
src/MQTTAsync.c
+99
-68
No files found.
build.xml
View file @
e3912c09
...
...
@@ -80,7 +80,7 @@
<!-- non-SSL, asynchronous library -->
<property
name=
"output.async.filename"
value=
"${output.folder}/lib${libname.async}.so"
/>
<exec
executable=
"gcc"
failonerror=
"true"
>
<arg
line=
"${ccflags.so} ${ldflags.so} -Wl,-soname,lib${libname.async}.so -o ${output.async.filename} ${async.source.files}"
/>
<arg
line=
"${ccflags.so} ${ldflags.so} -Wl,-
init,MQTTAsync_init -Wl,-
soname,lib${libname.async}.so -o ${output.async.filename} ${async.source.files}"
/>
</exec>
<exec
executable=
"strip"
failonerror=
"true"
>
<arg
value=
"${output.async.filename}"
/>
...
...
@@ -92,7 +92,7 @@
<!-- SSL, asynchronous library -->
<property
name=
"output.async.ssl.filename"
value=
"${output.folder}/lib${libname.async.ssl}.so"
/>
<exec
executable=
"gcc"
failonerror=
"true"
>
<arg
line=
"-DOPENSSL ${ccflags.so} ${ldflags.so} -Wl,-soname,lib${libname.async.ssl}.so -o ${output.async.ssl.filename} ${async.source.files}"
/>
<arg
line=
"-DOPENSSL ${ccflags.so} ${ldflags.so} -Wl,-
init,MQTTAsync_init -Wl,-
soname,lib${libname.async.ssl}.so -o ${output.async.ssl.filename} ${async.source.files}"
/>
</exec>
<exec
executable=
"strip"
failonerror=
"true"
>
<arg
value=
"${output.async.ssl.filename}"
/>
...
...
src/MQTTAsync.c
View file @
e3912c09
This diff is collapsed.
Click to expand it.
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