Skip to content

Commit 24c658f

Browse files
authored
Merge pull request #2283 from BHare1985/update-zproject
Problem: Out of date zproject
2 parents 774eb3b + 1a727ce commit 24c658f

File tree

13 files changed

+39
-40
lines changed

13 files changed

+39
-40
lines changed

api/python_cffi.slurp

+3-3
Original file line numberDiff line numberDiff line change
@@ -2358,19 +2358,19 @@ void
23582358

23592359
// Connects process stdin with a readable ('>', connect) zeromq socket. If
23602360
// socket argument is NULL, zproc creates own managed pair of inproc
2361-
// sockets. The writable one is then accessbile via zproc_stdin method.
2361+
// sockets. The writable one is then accessible via zproc_stdin method.
23622362
void
23632363
zproc_set_stdin (zproc_t *self, void *socket);
23642364

23652365
// Connects process stdout with a writable ('@', bind) zeromq socket. If
23662366
// socket argument is NULL, zproc creates own managed pair of inproc
2367-
// sockets. The readable one is then accessbile via zproc_stdout method.
2367+
// sockets. The readable one is then accessible via zproc_stdout method.
23682368
void
23692369
zproc_set_stdout (zproc_t *self, void *socket);
23702370

23712371
// Connects process stderr with a writable ('@', bind) zeromq socket. If
23722372
// socket argument is NULL, zproc creates own managed pair of inproc
2373-
// sockets. The readable one is then accessbile via zproc_stderr method.
2373+
// sockets. The readable one is then accessible via zproc_stderr method.
23742374
void
23752375
zproc_set_stderr (zproc_t *self, void *socket);
23762376

api/zproc.api

+3-3
Original file line numberDiff line numberDiff line change
@@ -46,21 +46,21 @@
4646
<method name = "set stdin" >
4747
Connects process stdin with a readable ('>', connect) zeromq socket. If
4848
socket argument is NULL, zproc creates own managed pair of inproc
49-
sockets. The writable one is then accessbile via zproc_stdin method.
49+
sockets. The writable one is then accessible via zproc_stdin method.
5050
<argument name = "socket" type = "anything" />
5151
</method>
5252

5353
<method name = "set stdout" >
5454
Connects process stdout with a writable ('@', bind) zeromq socket. If
5555
socket argument is NULL, zproc creates own managed pair of inproc
56-
sockets. The readable one is then accessbile via zproc_stdout method.
56+
sockets. The readable one is then accessible via zproc_stdout method.
5757
<argument name = "socket" type = "anything" />
5858
</method>
5959

6060
<method name = "set stderr" >
6161
Connects process stderr with a writable ('@', bind) zeromq socket. If
6262
socket argument is NULL, zproc creates own managed pair of inproc
63-
sockets. The readable one is then accessbile via zproc_stderr method.
63+
sockets. The readable one is then accessible via zproc_stderr method.
6464
<argument name = "socket" type = "anything" />
6565
</method>
6666

bindings/delphi/CZMQ.pas

+3-4
Original file line numberDiff line numberDiff line change
@@ -3781,12 +3781,12 @@ TZlistx = class(TInterfacedObject, IZlistx)
37813781

37823782
// Add an item to the head of the list. Calls the item duplicator, if any,
37833783
// on the item. Resets cursor to list head. Returns an item handle on
3784-
// success, NULL if memory was exhausted.
3784+
// success.
37853785
function AddStart(Item: Pointer): Pointer;
37863786

37873787
// Add an item to the tail of the list. Calls the item duplicator, if any,
37883788
// on the item. Resets cursor to list head. Returns an item handle on
3789-
// success, NULL if memory was exhausted.
3789+
// success.
37903790
function AddEnd(Item: Pointer): Pointer;
37913791

37923792
// Return the number of items in the list
@@ -3868,8 +3868,7 @@ TZlistx = class(TInterfacedObject, IZlistx)
38683868
// duplicator, if any, on the item. If low_value is true, starts searching
38693869
// from the start of the list, otherwise searches from the end. Use the item
38703870
// comparator, if any, to find where to place the new node. Returns a handle
3871-
// to the new node, or NULL if memory was exhausted. Resets the cursor to the
3872-
// list head.
3871+
// to the new node. Resets the cursor to the list head.
38733872
function Insert(Item: Pointer; LowValue: Boolean): Pointer;
38743873

38753874
// Move an item, specified by handle, into position in a sorted list. Uses

bindings/jni/czmq-jni/src/main/java/org/zeromq/czmq/Zproc.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ public void setEnv (Zhash arguments) {
8282
/*
8383
Connects process stdin with a readable ('>', connect) zeromq socket. If
8484
socket argument is NULL, zproc creates own managed pair of inproc
85-
sockets. The writable one is then accessbile via zproc_stdin method.
85+
sockets. The writable one is then accessible via zproc_stdin method.
8686
*/
8787
native static void __setStdin (long self, long socket);
8888
public void setStdin (long socket) {
@@ -91,7 +91,7 @@ public void setStdin (long socket) {
9191
/*
9292
Connects process stdout with a writable ('@', bind) zeromq socket. If
9393
socket argument is NULL, zproc creates own managed pair of inproc
94-
sockets. The readable one is then accessbile via zproc_stdout method.
94+
sockets. The readable one is then accessible via zproc_stdout method.
9595
*/
9696
native static void __setStdout (long self, long socket);
9797
public void setStdout (long socket) {
@@ -100,7 +100,7 @@ public void setStdout (long socket) {
100100
/*
101101
Connects process stderr with a writable ('@', bind) zeromq socket. If
102102
socket argument is NULL, zproc creates own managed pair of inproc
103-
sockets. The readable one is then accessbile via zproc_stderr method.
103+
sockets. The readable one is then accessible via zproc_stderr method.
104104
*/
105105
native static void __setStderr (long self, long socket);
106106
public void setStderr (long socket) {

bindings/lua_ffi/czmq_ffi.lua

+3-3
Original file line numberDiff line numberDiff line change
@@ -2353,19 +2353,19 @@ void
23532353

23542354
// Connects process stdin with a readable ('>', connect) zeromq socket. If
23552355
// socket argument is NULL, zproc creates own managed pair of inproc
2356-
// sockets. The writable one is then accessbile via zproc_stdin method.
2356+
// sockets. The writable one is then accessible via zproc_stdin method.
23572357
void
23582358
zproc_set_stdin (zproc_t *self, void *socket);
23592359

23602360
// Connects process stdout with a writable ('@', bind) zeromq socket. If
23612361
// socket argument is NULL, zproc creates own managed pair of inproc
2362-
// sockets. The readable one is then accessbile via zproc_stdout method.
2362+
// sockets. The readable one is then accessible via zproc_stdout method.
23632363
void
23642364
zproc_set_stdout (zproc_t *self, void *socket);
23652365

23662366
// Connects process stderr with a writable ('@', bind) zeromq socket. If
23672367
// socket argument is NULL, zproc creates own managed pair of inproc
2368-
// sockets. The readable one is then accessbile via zproc_stderr method.
2368+
// sockets. The readable one is then accessible via zproc_stderr method.
23692369
void
23702370
zproc_set_stderr (zproc_t *self, void *socket);
23712371

bindings/python/czmq/_czmq_ctypes.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -5081,23 +5081,23 @@ def set_stdin(self, socket):
50815081
"""
50825082
Connects process stdin with a readable ('>', connect) zeromq socket. If
50835083
socket argument is NULL, zproc creates own managed pair of inproc
5084-
sockets. The writable one is then accessbile via zproc_stdin method.
5084+
sockets. The writable one is then accessible via zproc_stdin method.
50855085
"""
50865086
return lib.zproc_set_stdin(self._as_parameter_, socket)
50875087

50885088
def set_stdout(self, socket):
50895089
"""
50905090
Connects process stdout with a writable ('@', bind) zeromq socket. If
50915091
socket argument is NULL, zproc creates own managed pair of inproc
5092-
sockets. The readable one is then accessbile via zproc_stdout method.
5092+
sockets. The readable one is then accessible via zproc_stdout method.
50935093
"""
50945094
return lib.zproc_set_stdout(self._as_parameter_, socket)
50955095

50965096
def set_stderr(self, socket):
50975097
"""
50985098
Connects process stderr with a writable ('@', bind) zeromq socket. If
50995099
socket argument is NULL, zproc creates own managed pair of inproc
5100-
sockets. The readable one is then accessbile via zproc_stderr method.
5100+
sockets. The readable one is then accessible via zproc_stderr method.
51015101
"""
51025102
return lib.zproc_set_stderr(self._as_parameter_, socket)
51035103

bindings/python_cffi/czmq_cffi/Zproc.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -64,23 +64,23 @@ def set_stdin(self, socket):
6464
"""
6565
Connects process stdin with a readable ('>', connect) zeromq socket. If
6666
socket argument is NULL, zproc creates own managed pair of inproc
67-
sockets. The writable one is then accessbile via zproc_stdin method.
67+
sockets. The writable one is then accessible via zproc_stdin method.
6868
"""
6969
utils.lib.zproc_set_stdin(self._p, socket._p)
7070

7171
def set_stdout(self, socket):
7272
"""
7373
Connects process stdout with a writable ('@', bind) zeromq socket. If
7474
socket argument is NULL, zproc creates own managed pair of inproc
75-
sockets. The readable one is then accessbile via zproc_stdout method.
75+
sockets. The readable one is then accessible via zproc_stdout method.
7676
"""
7777
utils.lib.zproc_set_stdout(self._p, socket._p)
7878

7979
def set_stderr(self, socket):
8080
"""
8181
Connects process stderr with a writable ('@', bind) zeromq socket. If
8282
socket argument is NULL, zproc creates own managed pair of inproc
83-
sockets. The readable one is then accessbile via zproc_stderr method.
83+
sockets. The readable one is then accessible via zproc_stderr method.
8484
"""
8585
utils.lib.zproc_set_stderr(self._p, socket._p)
8686

bindings/python_cffi/czmq_cffi/cdefs.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -2360,19 +2360,19 @@
23602360
23612361
// Connects process stdin with a readable ('>', connect) zeromq socket. If
23622362
// socket argument is NULL, zproc creates own managed pair of inproc
2363-
// sockets. The writable one is then accessbile via zproc_stdin method.
2363+
// sockets. The writable one is then accessible via zproc_stdin method.
23642364
void
23652365
zproc_set_stdin (zproc_t *self, void *socket);
23662366
23672367
// Connects process stdout with a writable ('@', bind) zeromq socket. If
23682368
// socket argument is NULL, zproc creates own managed pair of inproc
2369-
// sockets. The readable one is then accessbile via zproc_stdout method.
2369+
// sockets. The readable one is then accessible via zproc_stdout method.
23702370
void
23712371
zproc_set_stdout (zproc_t *self, void *socket);
23722372
23732373
// Connects process stderr with a writable ('@', bind) zeromq socket. If
23742374
// socket argument is NULL, zproc creates own managed pair of inproc
2375-
// sockets. The readable one is then accessbile via zproc_stderr method.
2375+
// sockets. The readable one is then accessible via zproc_stderr method.
23762376
void
23772377
zproc_set_stderr (zproc_t *self, void *socket);
23782378

bindings/qml/src/QmlZproc.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -40,23 +40,23 @@ void QmlZproc::setEnv (QmlZhash *arguments) {
4040
///
4141
// Connects process stdin with a readable ('>', connect) zeromq socket. If
4242
// socket argument is NULL, zproc creates own managed pair of inproc
43-
// sockets. The writable one is then accessbile via zproc_stdin method.
43+
// sockets. The writable one is then accessible via zproc_stdin method.
4444
void QmlZproc::setStdin (void *socket) {
4545
zproc_set_stdin (self, socket);
4646
};
4747

4848
///
4949
// Connects process stdout with a writable ('@', bind) zeromq socket. If
5050
// socket argument is NULL, zproc creates own managed pair of inproc
51-
// sockets. The readable one is then accessbile via zproc_stdout method.
51+
// sockets. The readable one is then accessible via zproc_stdout method.
5252
void QmlZproc::setStdout (void *socket) {
5353
zproc_set_stdout (self, socket);
5454
};
5555

5656
///
5757
// Connects process stderr with a writable ('@', bind) zeromq socket. If
5858
// socket argument is NULL, zproc creates own managed pair of inproc
59-
// sockets. The readable one is then accessbile via zproc_stderr method.
59+
// sockets. The readable one is then accessible via zproc_stderr method.
6060
void QmlZproc::setStderr (void *socket) {
6161
zproc_set_stderr (self, socket);
6262
};

bindings/qml/src/QmlZproc.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -45,17 +45,17 @@ public slots:
4545

4646
// Connects process stdin with a readable ('>', connect) zeromq socket. If
4747
// socket argument is NULL, zproc creates own managed pair of inproc
48-
// sockets. The writable one is then accessbile via zproc_stdin method.
48+
// sockets. The writable one is then accessible via zproc_stdin method.
4949
void setStdin (void *socket);
5050

5151
// Connects process stdout with a writable ('@', bind) zeromq socket. If
5252
// socket argument is NULL, zproc creates own managed pair of inproc
53-
// sockets. The readable one is then accessbile via zproc_stdout method.
53+
// sockets. The readable one is then accessible via zproc_stdout method.
5454
void setStdout (void *socket);
5555

5656
// Connects process stderr with a writable ('@', bind) zeromq socket. If
5757
// socket argument is NULL, zproc creates own managed pair of inproc
58-
// sockets. The readable one is then accessbile via zproc_stderr method.
58+
// sockets. The readable one is then accessible via zproc_stderr method.
5959
void setStderr (void *socket);
6060

6161
// Return subprocess stdin writable socket. NULL for

bindings/qt/src/qzproc.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ void QZproc::setEnv (QZhash *arguments)
6060
///
6161
// Connects process stdin with a readable ('>', connect) zeromq socket. If
6262
// socket argument is NULL, zproc creates own managed pair of inproc
63-
// sockets. The writable one is then accessbile via zproc_stdin method.
63+
// sockets. The writable one is then accessible via zproc_stdin method.
6464
void QZproc::setStdin (void *socket)
6565
{
6666
zproc_set_stdin (self, socket);
@@ -70,7 +70,7 @@ void QZproc::setStdin (void *socket)
7070
///
7171
// Connects process stdout with a writable ('@', bind) zeromq socket. If
7272
// socket argument is NULL, zproc creates own managed pair of inproc
73-
// sockets. The readable one is then accessbile via zproc_stdout method.
73+
// sockets. The readable one is then accessible via zproc_stdout method.
7474
void QZproc::setStdout (void *socket)
7575
{
7676
zproc_set_stdout (self, socket);
@@ -80,7 +80,7 @@ void QZproc::setStdout (void *socket)
8080
///
8181
// Connects process stderr with a writable ('@', bind) zeromq socket. If
8282
// socket argument is NULL, zproc creates own managed pair of inproc
83-
// sockets. The readable one is then accessbile via zproc_stderr method.
83+
// sockets. The readable one is then accessible via zproc_stderr method.
8484
void QZproc::setStderr (void *socket)
8585
{
8686
zproc_set_stderr (self, socket);

bindings/qt/src/qzproc.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -38,17 +38,17 @@ class QT_CZMQ_EXPORT QZproc : public QObject
3838

3939
// Connects process stdin with a readable ('>', connect) zeromq socket. If
4040
// socket argument is NULL, zproc creates own managed pair of inproc
41-
// sockets. The writable one is then accessbile via zproc_stdin method.
41+
// sockets. The writable one is then accessible via zproc_stdin method.
4242
void setStdin (void *socket);
4343

4444
// Connects process stdout with a writable ('@', bind) zeromq socket. If
4545
// socket argument is NULL, zproc creates own managed pair of inproc
46-
// sockets. The readable one is then accessbile via zproc_stdout method.
46+
// sockets. The readable one is then accessible via zproc_stdout method.
4747
void setStdout (void *socket);
4848

4949
// Connects process stderr with a writable ('@', bind) zeromq socket. If
5050
// socket argument is NULL, zproc creates own managed pair of inproc
51-
// sockets. The readable one is then accessbile via zproc_stderr method.
51+
// sockets. The readable one is then accessible via zproc_stderr method.
5252
void setStderr (void *socket);
5353

5454
// Return subprocess stdin writable socket. NULL for

bindings/ruby/lib/czmq/ffi/zproc.rb

+3-3
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ def set_env(arguments)
145145

146146
# Connects process stdin with a readable ('>', connect) zeromq socket. If
147147
# socket argument is NULL, zproc creates own managed pair of inproc
148-
# sockets. The writable one is then accessbile via zproc_stdin method.
148+
# sockets. The writable one is then accessible via zproc_stdin method.
149149
#
150150
# @param socket [::FFI::Pointer, #to_ptr]
151151
# @return [void]
@@ -158,7 +158,7 @@ def set_stdin(socket)
158158

159159
# Connects process stdout with a writable ('@', bind) zeromq socket. If
160160
# socket argument is NULL, zproc creates own managed pair of inproc
161-
# sockets. The readable one is then accessbile via zproc_stdout method.
161+
# sockets. The readable one is then accessible via zproc_stdout method.
162162
#
163163
# @param socket [::FFI::Pointer, #to_ptr]
164164
# @return [void]
@@ -171,7 +171,7 @@ def set_stdout(socket)
171171

172172
# Connects process stderr with a writable ('@', bind) zeromq socket. If
173173
# socket argument is NULL, zproc creates own managed pair of inproc
174-
# sockets. The readable one is then accessbile via zproc_stderr method.
174+
# sockets. The readable one is then accessible via zproc_stderr method.
175175
#
176176
# @param socket [::FFI::Pointer, #to_ptr]
177177
# @return [void]

0 commit comments

Comments
 (0)