summaryrefslogtreecommitdiff
path: root/kern/thread.c
diff options
context:
space:
mode:
authorMiguel Figueiredo <elmig@debianpt.org>2013-05-19 00:10:41 +0200
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2013-05-19 00:11:40 +0200
commitbc99a4f4a85d1803430d1b4c0d6619d1fba8d9c7 (patch)
tree7b1d8e1b1fa0486515acef9b69ad569505cec493 /kern/thread.c
parent35b0af420ce7150533d4bf249b4ddfe9b4231ddd (diff)
Remove unneeded variable initialization
* kern/thread.c (thread_force_terminate): Remove unneeded variable initialization.
Diffstat (limited to 'kern/thread.c')
-rw-r--r--kern/thread.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kern/thread.c b/kern/thread.c
index 204a7f5f..79f526a2 100644
--- a/kern/thread.c
+++ b/kern/thread.c
@@ -861,7 +861,7 @@ void
thread_force_terminate(
register thread_t thread)
{
- boolean_t deallocate_here = FALSE;
+ boolean_t deallocate_here;
spl_t s;
ipc_thread_disable(thread);