summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/src/sigaction.c
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2004-04-16 10:01:03 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2004-04-16 10:01:03 +0000
commit874297f3bea7761cf05ae26540b7a9e21d4a6e1d (patch)
tree3f514864e20beb9becc81d77053abec90d281a1a /cpukit/posix/src/sigaction.c
parentRemove stray white spaces. (diff)
downloadrtems-874297f3bea7761cf05ae26540b7a9e21d4a6e1d.tar.bz2
Remove stray white spaces.
Diffstat (limited to 'cpukit/posix/src/sigaction.c')
-rw-r--r--cpukit/posix/src/sigaction.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/cpukit/posix/src/sigaction.c b/cpukit/posix/src/sigaction.c
index eb4bc7e2a7..b986d97ba1 100644
--- a/cpukit/posix/src/sigaction.c
+++ b/cpukit/posix/src/sigaction.c
@@ -47,8 +47,8 @@ int sigaction(
if ( !is_valid_signo(sig) )
rtems_set_errno_and_return_minus_one( EINVAL );
-
- /*
+
+ /*
* Some signals cannot be ignored (P1003.1b-1993, pp. 70-72 and references.
*
* NOTE: Solaris documentation claims to "silently enforce" this which
@@ -57,7 +57,7 @@ int sigaction(
if ( sig == SIGKILL )
rtems_set_errno_and_return_minus_one( EINVAL );
-
+
/*
* Evaluate the new action structure and set the global signal vector
* appropriately.
@@ -83,7 +83,7 @@ int sigaction(
/*
* No need to evaluate or dispatch because:
*
- * + If we were ignoring the signal before, none could be pending
+ * + If we were ignoring the signal before, none could be pending
* now (signals not posted when SIG_IGN).
* + If we are now ignoring a signal that was previously pending,
* we clear the pending signal indicator.