mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-23 07:01:23 +00:00
[PATCH] make lots of things static
Another large rollup of various patches from Adrian which make things static where they were needlessly exported. Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
c31403a1f5
commit
408b664a7d
33 changed files with 67 additions and 70 deletions
|
@ -39,6 +39,8 @@ extern struct task_struct *child_reaper;
|
|||
|
||||
int getrusage(struct task_struct *, int, struct rusage __user *);
|
||||
|
||||
static void exit_mm(struct task_struct * tsk);
|
||||
|
||||
static void __unhash_process(struct task_struct *p)
|
||||
{
|
||||
nr_threads--;
|
||||
|
@ -474,7 +476,7 @@ EXPORT_SYMBOL_GPL(exit_fs);
|
|||
* Turn us into a lazy TLB process if we
|
||||
* aren't already..
|
||||
*/
|
||||
void exit_mm(struct task_struct * tsk)
|
||||
static void exit_mm(struct task_struct * tsk)
|
||||
{
|
||||
struct mm_struct *mm = tsk->mm;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue