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
44a33972
Commit
44a33972
authored
10 years ago
by
Gregory Nutt
Browse files
Options
Downloads
Patches
Plain Diff
sig_mqnotempty(): Test for a valid signal number inverted. From eero.nurkkala
parent
1b39aff8
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
ChangeLog
+3
-0
3 additions, 0 deletions
ChangeLog
sched/sig_mqnotempty.c
+1
-1
1 addition, 1 deletion
sched/sig_mqnotempty.c
with
4 additions
and
1 deletion
ChangeLog
+
3
−
0
View file @
44a33972
...
...
@@ -7340,4 +7340,7 @@
Simona (2014-5-14).
* arch/arm/src/sam34/sam_gpio.c: Fix some SAM4E compiler errors when
CONFIG_DEBUG_GPIO is enabled (2014-5-15).
* sched/sig_mqnotempty.c: Test for a valid signal number is inverted; this
function could not have been working correctly??? From eero.nurkkala
(2014-5-20).
This diff is collapsed.
Click to expand it.
sched/sig_mqnotempty.c
+
1
−
1
View file @
44a33972
...
...
@@ -103,7 +103,7 @@ int sig_mqnotempty(int pid, int signo, void *sival_ptr)
/* Verify that we can perform the signalling operation */
if
(
GOOD_SIGNO
(
signo
))
if
(
!
GOOD_SIGNO
(
signo
))
{
return
-
EINVAL
;
}
...
...
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