summaryrefslogtreecommitdiffstats
path: root/fs/fcntl.c
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>1997-12-16 05:34:03 +0000
committerRalf Baechle <ralf@linux-mips.org>1997-12-16 05:34:03 +0000
commit967c65a99059fd459b956c1588ce0ba227912c4e (patch)
tree8224d013ff5d255420713d05610c7efebd204d2a /fs/fcntl.c
parente20c1cc1656a66a2773bca4591a895cbc12696ff (diff)
Merge with Linux 2.1.72, part 1.
Diffstat (limited to 'fs/fcntl.c')
-rw-r--r--fs/fcntl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/fcntl.c b/fs/fcntl.c
index 99561051d..8743916ee 100644
--- a/fs/fcntl.c
+++ b/fs/fcntl.c
@@ -178,7 +178,7 @@ static void send_sigio(int pid, uid_t uid, uid_t euid)
(euid ^ p->suid) && (euid ^ p->uid) &&
(uid ^ p->suid) && (uid ^ p->uid))
continue;
- p->signal |= 1 << (SIGIO-1);
+ send_sig(SIGIO, p, 1);
if (p->state == TASK_INTERRUPTIBLE && signal_pending(p))
wake_up_process(p);
}