Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
serial2
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cs
ds
serial2
Commits
abd3d692
Commit
abd3d692
authored
8 months ago
by
Alessio Igor Bogani
Browse files
Options
Downloads
Patches
Plain Diff
Close connection if Write() is executed with buffer != 0
parent
f90c7653
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/Serial2.cpp
+11
-3
11 additions, 3 deletions
src/Serial2.cpp
with
11 additions
and
3 deletions
src/Serial2.cpp
+
11
−
3
View file @
abd3d692
...
...
@@ -524,15 +524,23 @@ void Serial2::write(const Tango::DevVarCharArray *argin)
{
DEBUG_STREAM
<<
"Serial2::Write() - "
<<
device_name
<<
std
::
endl
;
/*----- PROTECTED REGION ID(Serial2::write) ENABLED START -----*/
vector
<
unsigned
char
>
argin_data
;
argin_data
<<
*
argin
;
size_t
bytes_total
=
0
,
bytes_to_write
=
argin_data
.
size
();
if
(
!
init_error
.
empty
())
{
sleep
(
tout
);
Tango
::
Except
::
throw_exception
(
""
,
init_error
.
c_str
(),
__PRETTY_FUNCTION__
);
}
vector
<
unsigned
char
>
argin_data
;
argin_data
<<
*
argin
;
size_t
bytes_total
=
0
,
bytes_to_write
=
argin_data
.
size
();
if
(
max
(
output_queue_length
(),
0
)
!=
0
)
{
close
();
resolve
();
open
();
reconnections
+=
1
;
goto
error
;
}
while
(
bytes_total
<
bytes_to_write
)
{
int
s
=
select
(
WRITE
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
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