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
17
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
438d3a43
Commit
438d3a43
authored
3 years ago
by
ruslan.laishev
💬
Browse files
Options
Downloads
Patches
Plain Diff
Cosmetic changes of data cast.
parent
0efcd248
No related branches found
No related tags found
1 merge request
!512
bugfix-5760
Pipeline
#12329
passed with stage
in 5 seconds
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
modules/global-db/dap_chain_global_db_driver.c
+3
-3
3 additions, 3 deletions
modules/global-db/dap_chain_global_db_driver.c
with
3 additions
and
3 deletions
modules/global-db/dap_chain_global_db_driver.c
+
3
−
3
View file @
438d3a43
...
...
@@ -61,8 +61,8 @@ static dap_db_driver_callbacks_t s_drv_callback; /* A
static
int
s_db_drvmode_async
=
0
;
/* Set a kind of processing requests to DB:
<> 0 - Async mode should be used */
static
pthread_mutex_t
s_db_reqs_list_lock
=
PTHREAD_MUTEX_INITIALIZER
;
/* Lock to coordinate access to the <s_db_reqs_queue> */
static
dap_slist_t
s_db_reqs_list
=
{
0
};
/* A queue of request to DB - maintained in
static
pthread_mutex_t
s_db_reqs_list_lock
=
PTHREAD_MUTEX_INITIALIZER
;
/* Lock to coordinate access to the <s_db_reqs_queue> */
static
dap_slist_t
s_db_reqs_list
=
{
0
};
/* A queue of request to DB - maintained in
*/
/**
...
...
@@ -304,7 +304,7 @@ size_t l_store_obj_cnt;
return
1
;
/* 1 - Don't call it again */
}
if
(
(
l_ret
=
s_dap_remqhead
(
&
s_db_reqs_list
,
&
l_store_obj_cur
,
&
l_store_obj_cnt
))
)
if
(
(
l_ret
=
s_dap_remqhead
(
&
s_db_reqs_list
,
(
void
**
)
&
l_store_obj_cur
,
&
l_store_obj_cnt
))
)
{
assert
(
!
pthread_mutex_unlock
(
&
s_db_reqs_list_lock
)
);
log_it
(
L_ERROR
,
"DB Request list is in incosistence state (code %d)"
,
l_ret
);
...
...
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