Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
gmsh
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Larry Price
gmsh
Commits
c7253cd6
Commit
c7253cd6
authored
13 years ago
by
Christophe Geuzaine
Browse files
Options
Downloads
Patches
Plain Diff
catch more sendrecv errors + increase get() timout to 5 minutes
parent
ea454c77
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
Common/GmshSocket.h
+9
-7
9 additions, 7 deletions
Common/GmshSocket.h
Common/onelab.h
+2
-2
2 additions, 2 deletions
Common/onelab.h
with
11 additions
and
9 deletions
Common/GmshSocket.h
+
9
−
7
View file @
c7253cd6
...
@@ -87,16 +87,18 @@ class GmshSocket{
...
@@ -87,16 +87,18 @@ class GmshSocket{
// the socket name
// the socket name
std
::
string
_sockname
;
std
::
string
_sockname
;
// send some data over the socket
// send some data over the socket
void
_SendData
(
const
void
*
buffer
,
int
bytes
)
int
_SendData
(
const
void
*
buffer
,
int
bytes
)
{
{
const
char
*
buf
=
(
const
char
*
)
buffer
;
const
char
*
buf
=
(
const
char
*
)
buffer
;
int
sofar
=
0
;
int
sofar
=
0
;
int
remaining
=
bytes
;
int
remaining
=
bytes
;
do
{
do
{
int
len
=
send
(
_sock
,
buf
+
sofar
,
remaining
,
0
);
int
len
=
send
(
_sock
,
buf
+
sofar
,
remaining
,
0
);
if
(
len
<
0
)
return
-
1
;
// error
sofar
+=
len
;
sofar
+=
len
;
remaining
-=
len
;
remaining
-=
len
;
}
while
(
remaining
>
0
);
}
while
(
remaining
>
0
);
return
bytes
;
}
}
// receive some data over the socket
// receive some data over the socket
int
_ReceiveData
(
void
*
buffer
,
int
bytes
)
int
_ReceiveData
(
void
*
buffer
,
int
bytes
)
...
...
This diff is collapsed.
Click to expand it.
Common/onelab.h
+
2
−
2
View file @
c7253cd6
...
@@ -743,8 +743,8 @@ namespace onelab{
...
@@ -743,8 +743,8 @@ namespace onelab{
_gmshClient
->
SendMessage
(
GmshSocket
::
GMSH_PARAM_QUERY_ALL
,
msg
.
size
(),
&
msg
[
0
]);
_gmshClient
->
SendMessage
(
GmshSocket
::
GMSH_PARAM_QUERY_ALL
,
msg
.
size
(),
&
msg
[
0
]);
while
(
1
){
while
(
1
){
// stop if we have no communications for
10 sec
s
// stop if we have no communications for
5 minute
s
int
ret
=
_gmshClient
->
Select
(
1
0
,
0
);
int
ret
=
_gmshClient
->
Select
(
50
0
,
0
);
if
(
!
ret
){
if
(
!
ret
){
_gmshClient
->
Info
(
"Timout: aborting remote get"
);
_gmshClient
->
Info
(
"Timout: aborting remote get"
);
return
false
;
return
false
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment