LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Slackware (https://www.linuxquestions.org/questions/slackware-14/)
-   -   Slackware and Kernel technical infos (https://www.linuxquestions.org/questions/slackware-14/slackware-and-kernel-technical-infos-4175459152/)

Iuz 04-22-2013 11:57 AM

Slackware and Kernel technical infos
 
My OS professor asked for details of architecture, process synchronization, escalonating, deadlocks, threads and how process function but he seem to be convinced that distros have their own implementation of those while I'm pretty sure it is all done by the kernel (which I believe is not changed from distro to distro)...


Anyone can clarify this to me and maybe give me info on where can I get those details as it pertains to the kernel (if in fact that is all handled by the kernel ) ?

Didier Spaier 04-22-2013 12:12 PM

Generally speaking, Slackware ships vanilla kernels and unmodified usespace programs and utilities, e.g.those included in util-linux and coreutils packages in the /a series.

Basically the tasks you mentioned are mostly done by the kernel, I think.

To know more, visit http://kernelnewbies.org.

mlslk31 04-22-2013 12:37 PM

Either that, or download a kernel, unpack it, then look in the linux-[version]/Documentation directory. There's plenty of documentation there. Sometimes, the files have easy titles like "preempt-locking.txt". For things like the RCU files, either you have to know where you're going (linux-[version]/Documentation/RCU), or you grep around and hope that a match comes up.

Martinus2u 04-22-2013 01:06 PM

not quite so easy. Sure, all the fundamental services are situated in the kernel, and the kernel has to solve the concurrency problem for itself. But every multithreaded user space application has to solve inter-thread or inter-process communication and synchronization, usually through the use of some thread library. I just don't see where the distro comes into this picture, other than packaging it all up.

Didier Spaier 04-22-2013 01:15 PM

About threads... you could read this from Edward A. Lee


All times are GMT -5. The time now is 04:19 AM.