Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
NuttX RTOS
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor 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
f4grx
NuttX RTOS
Commits
366e3d33
Commit
366e3d33
authored
9 years ago
by
Gregory Nutt
Browse files
Options
Downloads
Patches
Plain Diff
Eliminate warnings
parent
bb595777
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
configs
+1
-1
1 addition, 1 deletion
configs
tools/mkconfig.c
+4
-4
4 additions, 4 deletions
tools/mkconfig.c
with
5 additions
and
5 deletions
configs
@
02a07e4d
Subproject commit
ba2b1db6db4cd8f44047f5817233a922ee69343e
Subproject commit
02a07e4dfc9a5e04a2aeb57f4bd89e80285e2bbc
This diff is collapsed.
Click to expand it.
tools/mkconfig.c
+
4
−
4
View file @
366e3d33
...
...
@@ -209,12 +209,12 @@ int main(int argc, char **argv, char **envp)
printf
(
"/* If the maximum message size is zero, then we assume that message queues
\n
"
);
printf
(
" * support should be disabled
\n
"
);
printf
(
" */
\n\n
"
);
printf
(
"#ifndef CONFIG_MQ_MAXMSGSIZE)
\n
"
);
printf
(
"# define CONFIG_DISABLE_MQUEUE 0
\n
"
);
printf
(
"#if !defined(CONFIG_MQ_MAXMSGSIZE) || defined(CONFIG_DISABLE_MQUEUE)
\n
"
);
printf
(
"# undef CONFIG_MQ_MAXMSGSIZE
\n
"
);
printf
(
"# define CONFIG_MQ_MAXMSGSIZE 0
\n
"
);
printf
(
"#endif
\n\n
"
);
printf
(
"#if CONFIG_MQ_MAXMSGSIZE <= 0 && !defined(CONFIG_DISABLE_MQUEUE)
\n
"
);
printf
(
"# undef CONFIG_DISABLE_MQUEUE
\n
"
);
printf
(
"# define CONFIG_DISABLE_MQUEUE 0
\n
"
);
printf
(
"# define CONFIG_DISABLE_MQUEUE 1
\n
"
);
printf
(
"#endif
\n\n
"
);
printf
(
"/* If mountpoint support in not included, then no filesystem can be supported */
\n\n
"
);
printf
(
"#ifdef CONFIG_DISABLE_MOUNTPOINT
\n
"
);
...
...
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