-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 120724 b: refs/heads/master c: 6cc88bc h: refs/heads/master v: v3
- Loading branch information
David Howells
authored and
James Morris
committed
Nov 13, 2008
1 parent
7958ad5
commit 79646d8
Showing
3 changed files
with
50 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: bb952bb98a7e479262c7eb25d5592545a3af147d | ||
refs/heads/master: 6cc88bc45ce8043171089c9592da223dfab91823 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
/* Function to determine if a thread group is single threaded or not | ||
* | ||
* Copyright (C) 2008 Red Hat, Inc. All Rights Reserved. | ||
* Written by David Howells (dhowells@redhat.com) | ||
* - Derived from security/selinux/hooks.c | ||
* | ||
* This program is free software; you can redistribute it and/or | ||
* modify it under the terms of the GNU General Public Licence | ||
* as published by the Free Software Foundation; either version | ||
* 2 of the Licence, or (at your option) any later version. | ||
*/ | ||
|
||
#include <linux/sched.h> | ||
|
||
/** | ||
* is_single_threaded - Determine if a thread group is single-threaded or not | ||
* @p: A task in the thread group in question | ||
* | ||
* This returns true if the thread group to which a task belongs is single | ||
* threaded, false if it is not. | ||
*/ | ||
bool is_single_threaded(struct task_struct *p) | ||
{ | ||
struct task_struct *g, *t; | ||
struct mm_struct *mm = p->mm; | ||
|
||
if (atomic_read(&p->signal->count) != 1) | ||
goto no; | ||
|
||
if (atomic_read(&p->mm->mm_users) != 1) { | ||
read_lock(&tasklist_lock); | ||
do_each_thread(g, t) { | ||
if (t->mm == mm && t != p) | ||
goto no_unlock; | ||
} while_each_thread(g, t); | ||
read_unlock(&tasklist_lock); | ||
} | ||
|
||
return true; | ||
|
||
no_unlock: | ||
read_unlock(&tasklist_lock); | ||
no: | ||
return false; | ||
} |