4

我有一个 C 程序来模拟不同的调度算法。从文件中读取进程信息。文件中每个进程的信息存储在以下结构中:

struct task_struct {
  volatile long state; /* -1 unrunnable, 0 runnable, >0 stopped */
  unsigned int flags; /* per process flags, defined below */
  int on_rq;
  int prio, static_prio, normal_prio;
  const struct sched_class *sched_class;
  struct list_head tasks;
  pid_t pid;
  int arr;
  /* simplify accounting */
  int ticks;
  int start_tick;
  int end_tick;
  int burst;
};

我有一个“队列”结构,它将保存任务/进程列表

struct rq {
  struct task_struct *curr, *idle, *stop;
  struct list_head task_root;
};

我有点了解内核链接列表的工作原理并拥有 list.h 的用户版本。似乎大多数与列表的交互都是在 list.h 中定义的。任何人都知道如何使用该文件中的函数尝试实现排序算法(可能合并)?

4

1 回答 1

10

为什么不直接使用list_sort定义在linux/list_sort.h?语法是:

/**
 * list_sort - sort a list
 * @priv: private data, opaque to list_sort(), passed to @cmp
 * @head: the list to sort
 * @cmp: the elements comparison function
 *
 * This function implements "merge sort", which has O(nlog(n))
 * complexity.
 *
 * The comparison function @cmp must return a negative value if @a
 * should sort before @b, and a positive value if @a should sort after
 * @b. If @a and @b are equivalent, and their original relative
 * ordering is to be preserved, @cmp must return 0.
 */
void list_sort(void *priv, struct list_head *head,
        int (*cmp)(void *priv, struct list_head *a,
            struct list_head *b))
于 2013-10-10T07:20:50.457 回答