Re: Doubt about scheduler

From: Jon Masters
Date: Sat Mar 04 2006 - 01:39:44 EST


On 3/2/06, Raúl Baena <raul_baena@xxxxxx> wrote:

> Hello!!!, I´m a student of computer science and I´m doing my final
> degree job in linux. It is about "linux kernel modules" , I have to know
> some things of the scheduler. The runqueue struct, and so on. The
> problem is that in the last linux kernel version in the "sched.h" isn´t
> defined these structs (prio_array, runqueue...), and I cann´t access to
> runqueue or prio_array fields. I know that in the 2.6.5 kernel version
> these fields were accessible and now don´t, could you tell me what is
> the reason please?

Deliberately, these aren't available outside of the scheduler so that
they can't be played with. Much as things like the symbol table aren't
exported to modules, some things in the kernel aren't even available
to other parts of the core kernel :-)

> I think that I´m going to do it (the module) in the 2.6.5 kernel
> version and will try to explain why, and for this I need your help.

If you really need to play with this stuff, then why not just make
your own kernel tree with this hacked up in the scheduler code itself?
If it's just for you, then that'll work fine. If you would explain
what it is that you need to do, then someone might be able to offer
you advice on the general direction to take - see also
http://www.kernelnewbies.org/

Jon.
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/