Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
RIOT
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
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
cm-projects
RIOT
Commits
9b5eedee
Commit
9b5eedee
authored
10 years ago
by
Christian Mehlis
Browse files
Options
Downloads
Patches
Plain Diff
ccnl: use stacksize main for all threads
parent
cebffb2c
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
examples/ccn-lite-client/main.c
+2
-2
2 additions, 2 deletions
examples/ccn-lite-client/main.c
sys/net/ccn_lite/ccnl-riot-compat.c
+2
-2
2 additions, 2 deletions
sys/net/ccn_lite/ccnl-riot-compat.c
with
4 additions
and
4 deletions
examples/ccn-lite-client/main.c
+
2
−
2
View file @
9b5eedee
...
@@ -42,10 +42,10 @@
...
@@ -42,10 +42,10 @@
#define RIOT_CCN_APPSERVER (1)
#define RIOT_CCN_APPSERVER (1)
#define RIOT_CCN_TESTS (0)
#define RIOT_CCN_TESTS (0)
char
relay_stack
[
KERNEL_CONF_STACKSIZE_
MAIN
];
char
relay_stack
[
KERNEL_CONF_STACKSIZE_
PRINTF
];
#if RIOT_CCN_APPSERVER
#if RIOT_CCN_APPSERVER
char
appserver_stack
[
KERNEL_CONF_STACKSIZE_
MAIN
];
char
appserver_stack
[
KERNEL_CONF_STACKSIZE_
PRINTF
];
#endif
#endif
int
relay_pid
,
appserver_pid
;
int
relay_pid
,
appserver_pid
;
...
...
This diff is collapsed.
Click to expand it.
sys/net/ccn_lite/ccnl-riot-compat.c
+
2
−
2
View file @
9b5eedee
...
@@ -33,7 +33,7 @@ radio_packet_t p;
...
@@ -33,7 +33,7 @@ radio_packet_t p;
transceiver_command_t
tcmd
;
transceiver_command_t
tcmd
;
msg_t
mesg
,
rep
;
msg_t
mesg
,
rep
;
char
relay_helper_stack
[
KERNEL_CONF_STACKSIZE_
PRINTF
];
char
relay_helper_stack
[
KERNEL_CONF_STACKSIZE_
MAIN
];
int
riot_send_transceiver
(
uint8_t
*
buf
,
uint16_t
size
,
uint16_t
to
)
int
riot_send_transceiver
(
uint8_t
*
buf
,
uint16_t
size
,
uint16_t
to
)
{
{
...
@@ -97,7 +97,7 @@ void ccnl_riot_relay_helper_start(void);
...
@@ -97,7 +97,7 @@ void ccnl_riot_relay_helper_start(void);
int
riot_start_helper_thread
(
void
)
int
riot_start_helper_thread
(
void
)
{
{
return
thread_create
(
relay_helper_stack
,
KERNEL_CONF_STACKSIZE_
PRINTF
,
PRIORITY_MAIN
-
2
,
CREATE_STACKTEST
,
ccnl_riot_relay_helper_start
,
"relay-helper"
);
return
thread_create
(
relay_helper_stack
,
KERNEL_CONF_STACKSIZE_
MAIN
,
PRIORITY_MAIN
-
2
,
CREATE_STACKTEST
,
ccnl_riot_relay_helper_start
,
"relay-helper"
);
}
}
char
*
riot_ccnl_event_to_string
(
int
event
)
char
*
riot_ccnl_event_to_string
(
int
event
)
...
...
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