Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
cellframe-sdk
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Code
Merge requests
16
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
Show more breadcrumbs
cellframe
cellframe-sdk
Commits
0df7811b
Commit
0df7811b
authored
9 months ago
by
Roman Khlopkov
🔜
Browse files
Options
Downloads
Patches
Plain Diff
[*] Node client waiting repair
parent
33dbc62a
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Pipeline
#40833
passed with stage
in 19 minutes and 28 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
dap-sdk
+1
-1
1 addition, 1 deletion
dap-sdk
modules/net/dap_chain_node_client.c
+5
-1
5 additions, 1 deletion
modules/net/dap_chain_node_client.c
with
6 additions
and
2 deletions
dap-sdk
@
a26a4b0c
Compare
0c4e700f
...
a26a4b0c
Subproject commit
0c4e700f4976945c8bd2370ca62f4e3f068a20c3
Subproject commit
a26a4b0c76a953a7563c664fb2dec74f122c1aa0
This diff is collapsed.
Click to expand it.
modules/net/dap_chain_node_client.c
+
5
−
1
View file @
0df7811b
...
@@ -156,7 +156,11 @@ static void s_stage_connected_callback(dap_client_t *a_client, void *a_arg)
...
@@ -156,7 +156,11 @@ static void s_stage_connected_callback(dap_client_t *a_client, void *a_arg)
}
}
}
}
}
}
if
(
l_node_client
->
callbacks
.
connected
)
pthread_mutex_lock
(
&
l_node_client
->
wait_mutex
);
l_node_client
->
state
=
NODE_CLIENT_STATE_ESTABLISHED
;
pthread_cond_signal
(
&
l_node_client
->
wait_cond
);
pthread_mutex_unlock
(
&
l_node_client
->
wait_mutex
);
if
(
l_node_client
->
callbacks
.
connected
)
l_node_client
->
callbacks
.
connected
(
l_node_client
,
l_node_client
->
callbacks_arg
);
l_node_client
->
callbacks
.
connected
(
l_node_client
,
l_node_client
->
callbacks_arg
);
}
}
}
}
...
...
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