torokerneleng.blogspot.com
Toro kernel: FOSDEM2015
http://torokerneleng.blogspot.com/2015/02/fosdem2015.html
A dedicated kernel for multi-threading applications. Wednesday, February 04, 2015. After a weekend in Brussels, I am again in Nice. It was a really interesting experience at FOSDEM. I put some pictures of the talk. I really enjoyed. I also left the link. To the presentation. In any case, I think the presentation will be online soon at fosdem.org. Publicado por Matias E. Vara. Subscribe to: Post Comments (Atom). There was an error in this gadget. Matias E. Vara. View my complete profile.
ragnaroklinux.blogspot.com
Ragnarok Linux: diciembre 2005
http://ragnaroklinux.blogspot.com/2005_12_01_archive.html
Distribucion Linux Basada en Gentoo altamente optimizada. Sábado, diciembre 10, 2005. Bueno despues de mucho tiempo ya contamos con site como debe de ser. Faltan hacer muchas cosas y obviamente faltan manos, pero ahi le vamos haciendole el esfuerzo. Actualmente tenemos un beta la version 0.8 que casi totalmente funcional. Sin embargo ya empezamos la creacion de la version 2.0 que contendra grandes novedades. Esperamos este lista para mediados de febrero. Posted by Renato Amaya at 5:58 am. Y otro punto mas.
ragnaroklinux.blogspot.com
Ragnarok Linux: julio 2005
http://ragnaroklinux.blogspot.com/2005_07_01_archive.html
Distribucion Linux Basada en Gentoo altamente optimizada. Martes, julio 26, 2005. Hasta hace poco tenia q disponer de un sistema de linux instalado o hacer mil piruetas para poder instalar Ragnarok. Pues a partir de hoy ya tengo un cd booteable que me ofrece en el entorno necesario para poder instalarlo. Bueno creo yo que el beta de Ragnarok Linux ya esta casi listo. :). Posted by Renato Amaya at 12:07 am. Domingo, julio 24, 2005. 2 más, y vamos creciendo. Posted by Renato Amaya at 7:44 am. Anjuta 1....
torokerneleng.blogspot.com
Toro kernel: April 2011
http://torokerneleng.blogspot.com/2011_04_01_archive.html
A dedicated kernel for multi-threading applications. Sunday, April 17, 2011. Memory Protection in a multicore environment. This post is contained into the final paper of Matias Vara named “Paralelizacion de Algoritmos Numericos con TORO Kernel” to get the degree on Electronic Engeniering from Universidad de La Plata. These theorical documents help to understand the kernel design. For protect resources in a multiprocessing system we need to define atomic operations. In every processor, write and read oper...
torokerneleng.blogspot.com
Toro kernel: January 2012
http://torokerneleng.blogspot.com/2012_01_01_archive.html
A dedicated kernel for multi-threading applications. Tuesday, January 03, 2012. Until the latest TORO's source, I was using 8259 controller to catch interrupts, but the problem was all the interrupts were captured by the Boot Strap Processor (or core #0). This is not agree with the dedicate hardware model. This is a new step toward a real multicore kernel. Matias E. Vara. Publicado por Matias E. Vara. Subscribe to: Posts (Atom). There was an error in this gadget. Matias E. Vara. View my complete profile.
torokerneleng.blogspot.com
Toro kernel: Toro Hello world
http://torokerneleng.blogspot.com/2015/01/step-by-step.html
A dedicated kernel for multi-threading applications. Sunday, January 11, 2015. In this post, we explain how toro's examples can be compiled, and then simulated. 1) Installs YASM and FPC/Lazarus. To install Lazarus/FPC, please follows the instruction here. 2) Clones TORO repository. Git clone git:/ toro.git.sourceforge.net/gitroot/toro/toro. Before to compile the toro's examples, we have to compile the tools needed to generate the Toro's image. To do so, runs "make" at /toro/tests. 4) Toro Hello world.
torokerneleng.blogspot.com
Toro kernel: June 2012
http://torokerneleng.blogspot.com/2012_06_01_archive.html
A dedicated kernel for multi-threading applications. Saturday, June 23, 2012. Slides about migration threading in TORO. I left a few slides about migration procedure in TORO kernel, I made a brief comparation with Linux mechanism. Also, I told a few lines about the migration in a real time environment. Matias E. Vara. Publicado por Matias E. Vara. Subscribe to: Posts (Atom). There was an error in this gadget. Matias E. Vara. View my complete profile. Slides about migration threading in TORO.
torokerneleng.blogspot.com
Toro kernel: December 2011
http://torokerneleng.blogspot.com/2011_12_01_archive.html
A dedicated kernel for multi-threading applications. Monday, December 12, 2011. Fixed an important bug in emigrate procedure. That's just a brief post about a recent change in the way that Toro migrates threads. Previously, when a Thread running in core #0 wanted create a new Thread in core #1, function ThreadCreate. Then, It migrated the whole TThread. Structure to the core #1. Are not already local memory. It is executed in the remote core. Instance of migrate the TThread. Matias E. Vara. In this artic...
torokerneleng.blogspot.com
Toro kernel: November 2012
http://torokerneleng.blogspot.com/2012_11_01_archive.html
A dedicated kernel for multi-threading applications. Sunday, November 25, 2012. Debugging TORO with BOCHS and GDB. In the following lines I'll tray to explain how debug Toro using bochs gdb. I often used qemu instance of bochs but the latest days I figured out some rare behaviors so I replaced qemu for bochs with good results. Before to start we have to compile bochs for such purpose, after download the source run the next command in order to compile it:. It is not possible to enable the smp. Ata0-master...