Cleanup, remove needless line-break and trailing space. Also switched that "& "

to " &" as really the whole rest of the file uses that style.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@32813 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Michael Lotz
2009-08-29 15:35:11 +00:00
parent 0d44df455b
commit d18b04298a
+3 -6
View File
@@ -581,10 +581,8 @@ send_signal_etc(pid_t id, uint signal, uint32 flags)
GRAB_THREAD_LOCK(); GRAB_THREAD_LOCK();
thread = thread_get_thread_struct_locked(id); thread = thread_get_thread_struct_locked(id);
if (thread != NULL) { if (thread != NULL)
status = deliver_signal(thread, signal, flags, status = deliver_signal(thread, signal, flags, reschedule);
reschedule);
}
} else { } else {
// send a signal to the specified process group // send a signal to the specified process group
// (the absolute value of the id) // (the absolute value of the id)
@@ -617,8 +615,7 @@ send_signal_etc(pid_t id, uint signal, uint32 flags)
if (thread != NULL) { if (thread != NULL) {
// we don't stop because of an error sending the signal; we // we don't stop because of an error sending the signal; we
// rather want to send as much signals as possible // rather want to send as much signals as possible
status = deliver_signal(thread, signal, flags, status = deliver_signal(thread, signal, flags, reschedule);
reschedule);
} }
RELEASE_THREAD_LOCK(); RELEASE_THREAD_LOCK();