Skip to content
Snippets Groups Projects
Commit b07430ac authored by Gregory Haskins's avatar Gregory Haskins
Browse files

sched: de CPP-ify the scheduler code

parent 0a6d4e1d
No related branches found
No related tags found
No related merge requests found
...@@ -64,8 +64,10 @@ static void dequeue_pushable_task(struct rq *rq, struct task_struct *p) ...@@ -64,8 +64,10 @@ static void dequeue_pushable_task(struct rq *rq, struct task_struct *p)
#else #else
#define enqueue_pushable_task(rq, p) do { } while (0) static inline
#define dequeue_pushable_task(rq, p) do { } while (0) void enqueue_pushable_task(struct rq *rq, struct task_struct *p) {}
static inline
void dequeue_pushable_task(struct rq *rq, struct task_struct *p) {}
#endif /* CONFIG_SMP */ #endif /* CONFIG_SMP */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment