Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
libdap-stream
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
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
cellframe
libdap-stream
Compare revisions
a2ae05dcafd2e37c1e371d422beee9f2949b8fa3 to d6ffc9051ae2019c48c8f9d1efc086fe59ec2386
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
cellframe/libdap-stream
Select target project
No results found
d6ffc9051ae2019c48c8f9d1efc086fe59ec2386
Select Git revision
Swap
Target
cellframe/libdap-stream
Select target project
cellframe/libdap-stream
1 result
a2ae05dcafd2e37c1e371d422beee9f2949b8fa3
Select Git revision
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
fixed clean stream_dap_delete()
· ab230c67
alexander.lysikov
authored
5 years ago
ab230c67
Merge branch 'feature-2557' into 'master'
· d6ffc905
dmitriy.gerasimov
authored
5 years ago
fixed clean stream_dap_delete() See merge request
!7
d6ffc905
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
stream/dap_stream.c
+3
-1
3 additions, 1 deletion
stream/dap_stream.c
with
3 additions
and
1 deletion
stream/dap_stream.c
View file @
d6ffc905
...
...
@@ -688,7 +688,9 @@ void stream_dap_delete(dap_client_remote_t* sh, void * arg){
(
void
)
arg
;
pthread_mutex_lock
(
&
s_mutex_keepalive_list
);
DL_DELETE
(
s_stream_keepalive_list
,
sid
);
if
(
s_stream_keepalive_list
){
DL_DELETE
(
s_stream_keepalive_list
,
sid
);
}
pthread_mutex_unlock
(
&
s_mutex_keepalive_list
);
size_t
i
;
...
...
This diff is collapsed.
Click to expand it.