Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
celllframe-node
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
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
Show more breadcrumbs
Dmitry Puzyrkov
celllframe-node
Commits
389f3c71
Commit
389f3c71
authored
2 years ago
by
Roman Khlopkov
🔜
Browse files
Options
Downloads
Plain Diff
Merge branch 'support-5341++' into 'develop'
support-5341++ See merge request
!390
parents
faf18dd1
9f90ff6d
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
CMakeLists.txt
+1
-1
1 addition, 1 deletion
CMakeLists.txt
cellframe-sdk
+1
-1
1 addition, 1 deletion
cellframe-sdk
python-cellframe
+1
-1
1 addition, 1 deletion
python-cellframe
sources/main.c
+0
-6
0 additions, 6 deletions
sources/main.c
with
3 additions
and
9 deletions
CMakeLists.txt
+
1
−
1
View file @
389f3c71
...
...
@@ -8,7 +8,7 @@ set(CMAKE_C_STANDARD 11)
SET
(
CPACK_PACKAGE_NAME
"
${
PROJECT_NAME
}
"
)
SET
(
CPACK_PACKAGE_VERSION_MAJOR 5
)
SET
(
CPACK_PACKAGE_VERSION_MINOR 1
)
SET
(
CPACK_PACKAGE_VERSION_PATCH
7
)
SET
(
CPACK_PACKAGE_VERSION_PATCH
8
)
if
(
CMAKE_TARGET_ARCH MATCHES arm
)
SET
(
CPACK_PACKAGE_ARCHITECTURE
"
${
CMAKE_TARGET_ARCH
}
"
)
...
...
This diff is collapsed.
Click to expand it.
cellframe-sdk
@
ddee5e51
Compare
64fdeb6a
...
ddee5e51
Subproject commit
64fdeb6a1fdc6ab01a73066a4b7769aa935caa0d
Subproject commit
ddee5e51d0b99799d1e767044184cc4ba281188f
This diff is collapsed.
Click to expand it.
python-cellframe
@
946cf0eb
Compare
56e90a1c
...
946cf0eb
Subproject commit
56e90a1c953568681730b98d433d0c2f0311140e
Subproject commit
946cf0eb7de076765588aae4580cd9046079f274
This diff is collapsed.
Click to expand it.
sources/main.c
+
0
−
6
View file @
389f3c71
...
...
@@ -285,21 +285,15 @@ int main( int argc, const char **argv )
dap_client_init
();
// Create and init notify server
size_t
l_notify_path_default_size
=
dap_snprintf
(
NULL
,
0
,
"/tmp/%s-notify"
,
dap_get_appname
()
)
+
1
;
char
*
l_notify_path_default
=
DAP_NEW_SIZE
(
char
,
l_notify_path_default_size
);
dap_snprintf
(
l_notify_path_default
,
l_notify_path_default_size
,
"/tmp/%s-notify"
,
dap_get_appname
()
);
if
(
dap_notify_server_init
()
!=
0
){
log_it
(
L_ERROR
,
"Can't init notify server module"
);
}
if
(
dap_chain_global_db_init
(
g_config
)
)
{
log_it
(
L_CRITICAL
,
"Can't init global db module"
);
return
-
58
;
}
//dap_http_client_simple_init( );
if
(
dap_datum_mempool_init
()
)
{
...
...
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