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
b608c19c
Commit
b608c19c
authored
Aug 24, 2010
by
Martin Sustrik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MSVC build fixed
parent
9b8993ef
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
40 additions
and
22 deletions
+40
-22
libzmq.vcproj
builds/msvc/libzmq/libzmq.vcproj
+34
-18
pipe.hpp
src/pipe.hpp
+5
-4
socket_base.cpp
src/socket_base.cpp
+1
-0
No files found.
builds/msvc/libzmq/libzmq.vcproj
View file @
b608c19c
...
...
@@ -170,11 +170,11 @@
UniqueIdentifier=
"{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
>
<File
RelativePath=
"..\..\..\src\
app_threa
d.cpp"
RelativePath=
"..\..\..\src\
comman
d.cpp"
>
</File>
<File
RelativePath=
"..\..\..\src\co
mmand
.cpp"
RelativePath=
"..\..\..\src\co
nnect_session
.cpp"
>
</File>
<File
...
...
@@ -185,10 +185,6 @@
RelativePath=
"..\..\..\src\devpoll.cpp"
>
</File>
<File
RelativePath=
"..\..\..\src\push.cpp"
>
</File>
<File
RelativePath=
"..\..\..\src\epoll.cpp"
>
...
...
@@ -229,6 +225,10 @@
RelativePath=
"..\..\..\src\msg_store.cpp"
>
</File>
<File
RelativePath=
"..\..\..\src\named_session.cpp"
>
</File>
<File
RelativePath=
"..\..\..\src\object.cpp"
>
...
...
@@ -238,7 +238,7 @@
>
</File>
<File
RelativePath=
"..\..\..\src\own
ed
.cpp"
RelativePath=
"..\..\..\src\own.cpp"
>
</File>
<File
...
...
@@ -273,6 +273,14 @@
RelativePath=
"..\..\..\src\pub.cpp"
>
</File>
<File
RelativePath=
"..\..\..\src\pull.cpp"
>
</File>
<File
RelativePath=
"..\..\..\src\push.cpp"
>
</File>
<File
RelativePath=
"..\..\..\src\queue.cpp"
>
...
...
@@ -326,7 +334,7 @@
>
</File>
<File
RelativePath=
"..\..\..\src\
pull
.cpp"
RelativePath=
"..\..\..\src\
transient_session
.cpp"
>
</File>
<File
...
...
@@ -375,10 +383,6 @@
Filter=
"h;hpp;hxx;hm;inl;inc;xsd"
UniqueIdentifier=
"{93995380-89BD-4b04-88EB-625FBE52EBFB}"
>
<File
RelativePath=
"..\..\..\src\app_thread.hpp"
>
</File>
<File
RelativePath=
"..\..\..\src\atomic_counter.hpp"
>
...
...
@@ -396,19 +400,19 @@
>
</File>
<File
RelativePath=
"..\..\..\src\c
tx
.hpp"
RelativePath=
"..\..\..\src\c
onnect_session
.hpp"
>
</File>
<File
RelativePath=
"..\..\..\src\
decoder
.hpp"
RelativePath=
"..\..\..\src\
ctx
.hpp"
>
</File>
<File
RelativePath=
"..\..\..\src\de
vpoll
.hpp"
RelativePath=
"..\..\..\src\de
coder
.hpp"
>
</File>
<File
RelativePath=
"..\..\..\src\
push
.hpp"
RelativePath=
"..\..\..\src\
devpoll
.hpp"
>
</File>
<File
...
...
@@ -483,6 +487,10 @@
RelativePath=
"..\..\..\src\mutex.hpp"
>
</File>
<File
RelativePath=
"..\..\..\src\named_session.hpp"
>
</File>
<File
RelativePath=
"..\..\..\src\object.hpp"
>
...
...
@@ -492,7 +500,7 @@
>
</File>
<File
RelativePath=
"..\..\..\src\own
ed
.hpp"
RelativePath=
"..\..\..\src\own.hpp"
>
</File>
<File
...
...
@@ -531,6 +539,14 @@
RelativePath=
"..\..\..\src\pub.hpp"
>
</File>
<File
RelativePath=
"..\..\..\src\pull.hpp"
>
</File>
<File
RelativePath=
"..\..\..\src\push.hpp"
>
</File>
<File
RelativePath=
"..\..\..\src\queue.hpp"
>
...
...
@@ -588,7 +604,7 @@
>
</File>
<File
RelativePath=
"..\..\..\src\
pull
.hpp"
RelativePath=
"..\..\..\src\
transient_session
.hpp"
>
</File>
<File
...
...
src/pipe.hpp
View file @
b608c19c
...
...
@@ -32,6 +32,11 @@
namespace
zmq
{
// Creates a pipe. Returns pointer to reader and writer objects.
void
create_pipe
(
object_t
*
reader_parent_
,
object_t
*
writer_parent_
,
uint64_t
hwm_
,
int64_t
swap_size_
,
class
reader_t
**
reader_
,
class
writer_t
**
writer_
);
// The shutdown mechanism for pipe works as follows: Either endpoint
// (or even both of them) can ask pipe to terminate by calling 'terminate'
// method. Pipe then terminates in asynchronous manner. When the part of
...
...
@@ -197,10 +202,6 @@ namespace zmq
void
operator
=
(
const
writer_t
&
);
};
// Creates a pipe. Returns pointer to reader and writer objects.
void
create_pipe
(
object_t
*
reader_parent_
,
object_t
*
writer_parent_
,
uint64_t
hwm_
,
int64_t
swap_size_
,
reader_t
**
reader_
,
writer_t
**
writer_
);
}
#endif
src/socket_base.cpp
View file @
b608c19c
...
...
@@ -307,6 +307,7 @@ int zmq::socket_base_t::bind (const char *addr_)
}
zmq_assert
(
false
);
return
-
1
;
}
int
zmq
::
socket_base_t
::
connect
(
const
char
*
addr_
)
...
...
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