Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
163e5d99
Commit
163e5d99
authored
Jan 08, 2005
by
Andrew Morton
Committed by
Linus Torvalds
Jan 08, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] Fix ppc64 !HOTPLUG_CPU build
idle_task_exit() only exists when CONFIG_HOTPLUG_CPU is enabled
parent
bd625398
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletion
+6
-1
include/linux/sched.h
include/linux/sched.h
+6
-1
No files found.
include/linux/sched.h
View file @
163e5d99
...
...
@@ -752,8 +752,13 @@ extern void sched_exec(void);
#define sched_exec() {}
#endif
extern
void
sched_idle_next
(
void
);
#ifdef CONFIG_HOTPLUG_CPU
extern
void
idle_task_exit
(
void
);
#else
static
inline
void
idle_task_exit
(
void
)
{}
#endif
extern
void
sched_idle_next
(
void
);
extern
void
set_user_nice
(
task_t
*
p
,
long
nice
);
extern
int
task_prio
(
const
task_t
*
p
);
extern
int
task_nice
(
const
task_t
*
p
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment