<?xml version="1.0" encoding="utf-8"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>HelenOS &#x2013; /</title><description>WebSVN RSS feed &#x2013; HelenOS</description><lastBuildDate>Wed, 22 Apr 2026 03:58:56 +0200</lastBuildDate><generator>WebSVN 2.8.4</generator><language>en</language><link>https://historic.helenos.org/log.php?repname=HelenOS&amp;path=%2F&amp;max=40&amp;peg=4468</link><atom:link href="https://historic.helenos.org/rss.php?path=%2F&amp;peg=4468&amp;repname=HelenOS" rel="self" type="application/rss+xml" />
<item><pubDate>Wed, 03 Jun 2009 21:09:20 +0200</pubDate><dc:creator>decky</dc:creator><title>Rev 4468 – remove redundant index_t and count_t types (which were always quite ...</title><description>&lt;div&gt;&lt;strong&gt;decky – 7 file(s) modified&lt;/strong&gt;&lt;br/&gt;remove redundant index_t and count_t types (which were always quite ambiguous and not actually needed)&lt;/div&gt;~ /trunk/uspace/lib/libc/arch/amd64/include/types.h&lt;br /&gt;~ /trunk/uspace/lib/libc/arch/arm32/include/types.h&lt;br /&gt;~ /trunk/uspace/lib/libc/arch/ia32/include/types.h&lt;br /&gt;~ /trunk/uspace/lib/libc/arch/ia64/include/types.h&lt;br /&gt;~ /trunk/uspace/lib/libc/arch/mips32/include/types.h&lt;br /&gt;~ /trunk/uspace/lib/libc/arch/ppc32/include/types.h&lt;br /&gt;~ /trunk/uspace/lib/libc/arch/sparc64/include/types.h&lt;br /&gt;</description><link>https://historic.helenos.org/revision.php?repname=HelenOS&amp;path=%2F&amp;isdir=1&amp;rev=4468&amp;peg=4468</link><guid>https://historic.helenos.org/revision.php?repname=HelenOS&amp;path=%2F&amp;isdir=1&amp;rev=4468&amp;peg=4468</guid></item>
<item><pubDate>Wed, 03 Jun 2009 21:07:55 +0200</pubDate><dc:creator>decky</dc:creator><title>Rev 4467 – fix include</title><description>&lt;div&gt;&lt;strong&gt;decky – 1 file(s) modified&lt;/strong&gt;&lt;br/&gt;fix include&lt;/div&gt;~ /trunk/uspace/lib/libc/arch/arm32/include/fibril.h&lt;br /&gt;</description><link>https://historic.helenos.org/revision.php?repname=HelenOS&amp;path=%2F&amp;isdir=1&amp;rev=4467&amp;peg=4468</link><guid>https://historic.helenos.org/revision.php?repname=HelenOS&amp;path=%2F&amp;isdir=1&amp;rev=4467&amp;peg=4468</guid></item>
<item><pubDate>Wed, 03 Jun 2009 21:02:28 +0200</pubDate><dc:creator>decky</dc:creator><title>Rev 4466 – reorder compiler options to be consistent with kernel</title><description>&lt;div&gt;&lt;strong&gt;decky – 1 file(s) modified&lt;/strong&gt;&lt;br/&gt;reorder compiler options to be consistent with kernel&lt;/div&gt;~ /trunk/uspace/lib/libc/Makefile.toolchain&lt;br /&gt;</description><link>https://historic.helenos.org/revision.php?repname=HelenOS&amp;path=%2F&amp;isdir=1&amp;rev=4466&amp;peg=4468</link><guid>https://historic.helenos.org/revision.php?repname=HelenOS&amp;path=%2F&amp;isdir=1&amp;rev=4466&amp;peg=4468</guid></item>
<item><pubDate>Wed, 03 Jun 2009 21:01:53 +0200</pubDate><dc:creator>decky</dc:creator><title>Rev 4465 – implement VFS_OPEN_NODE and VFS_DEVICE (no device handle is returned) implement ...</title><description>&lt;div&gt;&lt;strong&gt;decky – 7 file(s) modified&lt;/strong&gt;&lt;br/&gt;implement VFS_OPEN_NODE and VFS_DEVICE (no device handle is returned)&lt;br /&gt;
implement no-op VFS_SYNC and VFS_CLOSE&lt;/div&gt;~ /trunk/uspace/srv/fs/fat/fat.c&lt;br /&gt;~ /trunk/uspace/srv/fs/fat/fat.h&lt;br /&gt;~ /trunk/uspace/srv/fs/fat/fat_fat.c&lt;br /&gt;~ /trunk/uspace/srv/fs/fat/fat_ops.c&lt;br /&gt;~ /trunk/uspace/srv/fs/tmpfs/tmpfs.c&lt;br /&gt;~ /trunk/uspace/srv/fs/tmpfs/tmpfs.h&lt;br /&gt;~ /trunk/uspace/srv/fs/tmpfs/tmpfs_ops.c&lt;br /&gt;</description><link>https://historic.helenos.org/revision.php?repname=HelenOS&amp;path=%2F&amp;isdir=1&amp;rev=4465&amp;peg=4468</link><guid>https://historic.helenos.org/revision.php?repname=HelenOS&amp;path=%2F&amp;isdir=1&amp;rev=4465&amp;peg=4468</guid></item>
<item><pubDate>Wed, 03 Jun 2009 20:59:31 +0200</pubDate><dc:creator>decky</dc:creator><title>Rev 4464 – devfs rewrite:  - implement VFS_OPEN_NODE, VFS_DEVICE, VFS_SYNC, VFS_CLOSE  ...</title><description>&lt;div&gt;&lt;strong&gt;decky – 3 file(s) modified&lt;/strong&gt;&lt;br/&gt;devfs rewrite:&lt;br /&gt;
 - implement VFS_OPEN_NODE, VFS_DEVICE, VFS_SYNC, VFS_CLOSE&lt;br /&gt;
 - connect to underlying device during VFS_LOOKUP (if L_OPEN flag is used) and VFS_OPEN_NODE&lt;br /&gt;
 - disconnect from underlying device during VFS_CLOSE&lt;br /&gt;
 - forward VFS_READ, VFS_WRITE and VFS_SYNC to the underlying device&lt;br /&gt;
 - VFS_DEVICE: return underlying device handle&lt;/div&gt;~ /trunk/uspace/srv/fs/devfs/devfs.c&lt;br /&gt;~ /trunk/uspace/srv/fs/devfs/devfs_ops.c&lt;br /&gt;~ /trunk/uspace/srv/fs/devfs/devfs_ops.h&lt;br /&gt;</description><link>https://historic.helenos.org/revision.php?repname=HelenOS&amp;path=%2F&amp;isdir=1&amp;rev=4464&amp;peg=4468</link><guid>https://historic.helenos.org/revision.php?repname=HelenOS&amp;path=%2F&amp;isdir=1&amp;rev=4464&amp;peg=4468</guid></item>
<item><pubDate>Wed, 03 Jun 2009 20:54:49 +0200</pubDate><dc:creator>decky</dc:creator><title>Rev 4463 – VFS rewrite:  - add new VFS methods   ...</title><description>&lt;div&gt;&lt;strong&gt;decky – 6 file(s) modified&lt;/strong&gt;&lt;br/&gt;VFS rewrite:&lt;br /&gt;
 - add new VFS methods&lt;br /&gt;
    - VFS_NODE for getting VFS node for a file descriptor&lt;br /&gt;
    - VFS_OPEN_NODE for opening an i-node directly&lt;br /&gt;
    - VFS_DEVICE for getting the underlying device of a file (if any)&lt;br /&gt;
    - VFS_SYNC for syncing buffers&lt;br /&gt;
 - L_OPEN flag is set to underlying filesystem in VFS_LOOKUP when opening a file to support initialization (if any)&lt;br /&gt;
 - VFS_CLOSE is now propagated to underlying filesystem to support cleanup (if any)&lt;/div&gt;~ /trunk/uspace/srv/vfs/vfs.c&lt;br /&gt;~ /trunk/uspace/srv/vfs/vfs.h&lt;br /&gt;~ /trunk/uspace/srv/vfs/vfs_lookup.c&lt;br /&gt;~ /trunk/uspace/srv/vfs/vfs_node.c&lt;br /&gt;~ /trunk/uspace/srv/vfs/vfs_ops.c&lt;br /&gt;~ /trunk/uspace/srv/vfs/vfs_register.c&lt;br /&gt;</description><link>https://historic.helenos.org/revision.php?repname=HelenOS&amp;path=%2F&amp;isdir=1&amp;rev=4463&amp;peg=4468</link><guid>https://historic.helenos.org/revision.php?repname=HelenOS&amp;path=%2F&amp;isdir=1&amp;rev=4463&amp;peg=4468</guid></item>
<item><pubDate>Wed, 03 Jun 2009 20:49:33 +0200</pubDate><dc:creator>decky</dc:creator><title>Rev 4462 – keyboard server rewrite: rename &quot;kbd events&quot; to more generic &quot;console ...</title><description>&lt;div&gt;&lt;strong&gt;decky – 16 file(s) modified&lt;/strong&gt;&lt;br/&gt;keyboard server rewrite: rename &quot;kbd events&quot; to more generic &quot;console events&quot; and similar changes&lt;br /&gt;
rename key_buffer.* to keybuffer.*&lt;br /&gt;
coding style changes&lt;/div&gt;~ /trunk/uspace/srv/kbd/ctl/gxe_fb.c&lt;br /&gt;~ /trunk/uspace/srv/kbd/ctl/pc.c&lt;br /&gt;~ /trunk/uspace/srv/kbd/ctl/stty.c&lt;br /&gt;~ /trunk/uspace/srv/kbd/ctl/sun.c&lt;br /&gt;~ /trunk/uspace/srv/kbd/genarch/stroke.c&lt;br /&gt;~ /trunk/uspace/srv/kbd/generic/kbd.c&lt;br /&gt;+ /trunk/uspace/srv/kbd/generic/keybuffer.c &lt;i&gt;(copied from /trunk/uspace/srv/kbd/generic/key_buffer.c@4445)&lt;/i&gt;&lt;br /&gt;x /trunk/uspace/srv/kbd/generic/key_buffer.c&lt;br /&gt;~ /trunk/uspace/srv/kbd/include/kbd.h&lt;br /&gt;+ /trunk/uspace/srv/kbd/include/keybuffer.h &lt;i&gt;(copied from /trunk/uspace/srv/kbd/include/key_buffer.h@4445)&lt;/i&gt;&lt;br /&gt;x /trunk/uspace/srv/kbd/include/key_buffer.h&lt;br /&gt;~ /trunk/uspace/srv/kbd/include/layout.h&lt;br /&gt;~ /trunk/uspace/srv/kbd/layout/cz.c&lt;br /&gt;~ /trunk/uspace/srv/kbd/layout/us_dvorak.c&lt;br /&gt;~ /trunk/uspace/srv/kbd/layout/us_qwerty.c&lt;br /&gt;~ /trunk/uspace/srv/kbd/Makefile&lt;br /&gt;</description><link>https://historic.helenos.org/revision.php?repname=HelenOS&amp;path=%2F&amp;isdir=1&amp;rev=4462&amp;peg=4468</link><guid>https://historic.helenos.org/revision.php?repname=HelenOS&amp;path=%2F&amp;isdir=1&amp;rev=4462&amp;peg=4468</guid></item>
<item><pubDate>Wed, 03 Jun 2009 20:46:29 +0200</pubDate><dc:creator>decky</dc:creator><title>Rev 4461 – add support for passing preset files rename loader_ prefix to ...</title><description>&lt;div&gt;&lt;strong&gt;decky – 1 file(s) modified&lt;/strong&gt;&lt;br/&gt;add support for passing preset files&lt;br /&gt;
rename loader_ prefix to ldr_ prefix (to avoid confusion with libc functions)&lt;/div&gt;~ /trunk/uspace/srv/loader/main.c&lt;br /&gt;</description><link>https://historic.helenos.org/revision.php?repname=HelenOS&amp;path=%2F&amp;isdir=1&amp;rev=4461&amp;peg=4468</link><guid>https://historic.helenos.org/revision.php?repname=HelenOS&amp;path=%2F&amp;isdir=1&amp;rev=4461&amp;peg=4468</guid></item>
<item><pubDate>Wed, 03 Jun 2009 20:45:53 +0200</pubDate><dc:creator>jermar</dc:creator><title>Rev 4460 – Streamline locking of phones during cloning.</title><description>&lt;div&gt;&lt;strong&gt;jermar – 1 file(s) modified&lt;/strong&gt;&lt;br/&gt;Streamline locking of phones during cloning.&lt;/div&gt;~ /trunk/kernel/generic/src/ipc/sysipc.c&lt;br /&gt;</description><link>https://historic.helenos.org/revision.php?repname=HelenOS&amp;path=%2F&amp;isdir=1&amp;rev=4460&amp;peg=4468</link><guid>https://historic.helenos.org/revision.php?repname=HelenOS&amp;path=%2F&amp;isdir=1&amp;rev=4460&amp;peg=4468</guid></item>
<item><pubDate>Wed, 03 Jun 2009 20:45:33 +0200</pubDate><dc:creator>decky</dc:creator><title>Rev 4459 – split naming service into multiple files for better readability add ...</title><description>&lt;div&gt;&lt;strong&gt;decky – 9 file(s) modified&lt;/strong&gt;&lt;br/&gt;split naming service into multiple files for better readability&lt;br /&gt;
add support for waiting on tasks (receives kernel task notifications)&lt;/div&gt;+ /trunk/uspace/srv/ns/clonable.c&lt;br /&gt;+ /trunk/uspace/srv/ns/clonable.h&lt;br /&gt;~ /trunk/uspace/srv/ns/Makefile&lt;br /&gt;~ /trunk/uspace/srv/ns/ns.c&lt;br /&gt;+ /trunk/uspace/srv/ns/ns.h&lt;br /&gt;+ /trunk/uspace/srv/ns/service.c&lt;br /&gt;+ /trunk/uspace/srv/ns/service.h&lt;br /&gt;+ /trunk/uspace/srv/ns/task.c&lt;br /&gt;+ /trunk/uspace/srv/ns/task.h&lt;br /&gt;</description><link>https://historic.helenos.org/revision.php?repname=HelenOS&amp;path=%2F&amp;isdir=1&amp;rev=4459&amp;peg=4468</link><guid>https://historic.helenos.org/revision.php?repname=HelenOS&amp;path=%2F&amp;isdir=1&amp;rev=4459&amp;peg=4468</guid></item>
<item><pubDate>Wed, 03 Jun 2009 20:43:15 +0200</pubDate><dc:creator>decky</dc:creator><title>Rev 4458 – remove futex (devmap is not multithreaded), use fibril serialization instead</title><description>&lt;div&gt;&lt;strong&gt;decky – 1 file(s) modified&lt;/strong&gt;&lt;br/&gt;remove futex (devmap is not multithreaded), use fibril serialization instead&lt;/div&gt;~ /trunk/uspace/srv/devmap/devmap.c&lt;br /&gt;</description><link>https://historic.helenos.org/revision.php?repname=HelenOS&amp;path=%2F&amp;isdir=1&amp;rev=4458&amp;peg=4468</link><guid>https://historic.helenos.org/revision.php?repname=HelenOS&amp;path=%2F&amp;isdir=1&amp;rev=4458&amp;peg=4468</guid></item>
<item><pubDate>Wed, 03 Jun 2009 20:41:27 +0200</pubDate><dc:creator>decky</dc:creator><title>Rev 4457 – framebuffer server rewrite: cleanup, always use canonical order of coordinates ...</title><description>&lt;div&gt;&lt;strong&gt;decky – 5 file(s) modified&lt;/strong&gt;&lt;br/&gt;framebuffer server rewrite: cleanup, always use canonical order of coordinates (x, y)&lt;/div&gt;~ /trunk/uspace/srv/fb/ega.c&lt;br /&gt;~ /trunk/uspace/srv/fb/ega.h&lt;br /&gt;~ /trunk/uspace/srv/fb/fb.c&lt;br /&gt;~ /trunk/uspace/srv/fb/serial_console.c&lt;br /&gt;~ /trunk/uspace/srv/fb/serial_console.h&lt;br /&gt;</description><link>https://historic.helenos.org/revision.php?repname=HelenOS&amp;path=%2F&amp;isdir=1&amp;rev=4457&amp;peg=4468</link><guid>https://historic.helenos.org/revision.php?repname=HelenOS&amp;path=%2F&amp;isdir=1&amp;rev=4457&amp;peg=4468</guid></item>
<item><pubDate>Wed, 03 Jun 2009 20:39:12 +0200</pubDate><dc:creator>decky</dc:creator><title>Rev 4456 – console server rewrite: use VFS_READ/VFS_WRITE for generic I/O, register separate ...</title><description>&lt;div&gt;&lt;strong&gt;decky – 6 file(s) modified&lt;/strong&gt;&lt;br/&gt;console server rewrite: use VFS_READ/VFS_WRITE for generic I/O, register separate virtual consoles using device mapper&lt;/div&gt;~ /trunk/uspace/srv/console/console.c&lt;br /&gt;~ /trunk/uspace/srv/console/gcons.c&lt;br /&gt;~ /trunk/uspace/srv/console/gcons.h&lt;br /&gt;~ /trunk/uspace/srv/console/Makefile&lt;br /&gt;~ /trunk/uspace/srv/console/screenbuffer.c&lt;br /&gt;~ /trunk/uspace/srv/console/screenbuffer.h&lt;br /&gt;</description><link>https://historic.helenos.org/revision.php?repname=HelenOS&amp;path=%2F&amp;isdir=1&amp;rev=4456&amp;peg=4468</link><guid>https://historic.helenos.org/revision.php?repname=HelenOS&amp;path=%2F&amp;isdir=1&amp;rev=4456&amp;peg=4468</guid></item>
<item><pubDate>Wed, 03 Jun 2009 20:35:49 +0200</pubDate><dc:creator>decky</dc:creator><title>Rev 4455 – add getvc to uspace Makefile</title><description>&lt;div&gt;&lt;strong&gt;decky – 1 file(s) modified&lt;/strong&gt;&lt;br/&gt;add getvc to uspace Makefile&lt;/div&gt;~ /trunk/uspace/Makefile&lt;br /&gt;</description><link>https://historic.helenos.org/revision.php?repname=HelenOS&amp;path=%2F&amp;isdir=1&amp;rev=4455&amp;peg=4468</link><guid>https://historic.helenos.org/revision.php?repname=HelenOS&amp;path=%2F&amp;isdir=1&amp;rev=4455&amp;peg=4468</guid></item>
<item><pubDate>Wed, 03 Jun 2009 20:34:41 +0200</pubDate><dc:creator>decky</dc:creator><title>Rev 4454 – add getvc to RAM disk</title><description>&lt;div&gt;&lt;strong&gt;decky – 7 file(s) modified&lt;/strong&gt;&lt;br/&gt;add getvc to RAM disk&lt;/div&gt;~ /trunk/boot/arch/amd64/Makefile.inc&lt;br /&gt;~ /trunk/boot/arch/arm32/loader/Makefile&lt;br /&gt;~ /trunk/boot/arch/ia32/Makefile.inc&lt;br /&gt;~ /trunk/boot/arch/ia64/loader/Makefile&lt;br /&gt;~ /trunk/boot/arch/mips32/loader/Makefile&lt;br /&gt;~ /trunk/boot/arch/ppc32/loader/Makefile&lt;br /&gt;~ /trunk/boot/arch/sparc64/loader/Makefile&lt;br /&gt;</description><link>https://historic.helenos.org/revision.php?repname=HelenOS&amp;path=%2F&amp;isdir=1&amp;rev=4454&amp;peg=4468</link><guid>https://historic.helenos.org/revision.php?repname=HelenOS&amp;path=%2F&amp;isdir=1&amp;rev=4454&amp;peg=4468</guid></item>
<item><pubDate>Wed, 03 Jun 2009 20:33:55 +0200</pubDate><dc:creator>decky</dc:creator><title>Rev 4453 – port macros from kernel</title><description>&lt;div&gt;&lt;strong&gt;decky – 1 file(s) modified&lt;/strong&gt;&lt;br/&gt;port macros from kernel&lt;/div&gt;~ /trunk/uspace/lib/libc/include/macros.h&lt;br /&gt;</description><link>https://historic.helenos.org/revision.php?repname=HelenOS&amp;path=%2F&amp;isdir=1&amp;rev=4453&amp;peg=4468</link><guid>https://historic.helenos.org/revision.php?repname=HelenOS&amp;path=%2F&amp;isdir=1&amp;rev=4453&amp;peg=4468</guid></item>
<item><pubDate>Wed, 03 Jun 2009 07:40:56 +0200</pubDate><dc:creator>decky</dc:creator><title>Rev 4452 – send notification also during task creation (the intention is to ...</title><description>&lt;div&gt;&lt;strong&gt;decky – 2 file(s) modified&lt;/strong&gt;&lt;br/&gt;send notification also during task creation&lt;br /&gt;
(the intention is to be able to pair task creation and destruction to avoid missed waits)&lt;/div&gt;~ /trunk/kernel/generic/include/ipc/event_types.h&lt;br /&gt;~ /trunk/kernel/generic/src/proc/task.c&lt;br /&gt;</description><link>https://historic.helenos.org/revision.php?repname=HelenOS&amp;path=%2F&amp;isdir=1&amp;rev=4452&amp;peg=4468</link><guid>https://historic.helenos.org/revision.php?repname=HelenOS&amp;path=%2F&amp;isdir=1&amp;rev=4452&amp;peg=4468</guid></item>
<item><pubDate>Wed, 03 Jun 2009 07:36:30 +0200</pubDate><dc:creator>decky</dc:creator><title>Rev 4451 – rename the macro to be consistent with LOWER32/UPPER32 and add ...</title><description>&lt;div&gt;&lt;strong&gt;decky – 1 file(s) modified&lt;/strong&gt;&lt;br/&gt;rename the macro to be consistent with LOWER32/UPPER32 and add 64b typecast&lt;br /&gt;
(how much fun with a single macro :))&lt;/div&gt;~ /trunk/kernel/generic/include/macros.h&lt;br /&gt;</description><link>https://historic.helenos.org/revision.php?repname=HelenOS&amp;path=%2F&amp;isdir=1&amp;rev=4451&amp;peg=4468</link><guid>https://historic.helenos.org/revision.php?repname=HelenOS&amp;path=%2F&amp;isdir=1&amp;rev=4451&amp;peg=4468</guid></item>
<item><pubDate>Wed, 03 Jun 2009 04:01:13 +0200</pubDate><dc:creator>svoboda</dc:creator><title>Rev 4450 – Parethesize args in MERGE_LOHI32 macro.</title><description>&lt;div&gt;&lt;strong&gt;svoboda – 1 file(s) modified&lt;/strong&gt;&lt;br/&gt;Parethesize args in MERGE_LOHI32 macro.&lt;/div&gt;~ /trunk/kernel/generic/include/macros.h&lt;br /&gt;</description><link>https://historic.helenos.org/revision.php?repname=HelenOS&amp;path=%2F&amp;isdir=1&amp;rev=4450&amp;peg=4468</link><guid>https://historic.helenos.org/revision.php?repname=HelenOS&amp;path=%2F&amp;isdir=1&amp;rev=4450&amp;peg=4468</guid></item>
<item><pubDate>Wed, 03 Jun 2009 00:40:58 +0200</pubDate><dc:creator>decky</dc:creator><title>Rev 4449 – fix stupid typo (thx Matthieu Gueguen)</title><description>&lt;div&gt;&lt;strong&gt;decky – 1 file(s) modified&lt;/strong&gt;&lt;br/&gt;fix stupid typo (thx Matthieu Gueguen)&lt;/div&gt;~ /trunk/kernel/generic/include/macros.h&lt;br /&gt;</description><link>https://historic.helenos.org/revision.php?repname=HelenOS&amp;path=%2F&amp;isdir=1&amp;rev=4449&amp;peg=4468</link><guid>https://historic.helenos.org/revision.php?repname=HelenOS&amp;path=%2F&amp;isdir=1&amp;rev=4449&amp;peg=4468</guid></item>
<item><pubDate>Tue, 02 Jun 2009 19:28:10 +0200</pubDate><dc:creator>decky</dc:creator><title>Rev 4448 – add very simple implementation of task destruction notification (which will ...</title><description>&lt;div&gt;&lt;strong&gt;decky – 3 file(s) modified&lt;/strong&gt;&lt;br/&gt;add very simple implementation of task destruction notification&lt;br /&gt;
(which will be later used for waiting on a task)&lt;/div&gt;~ /trunk/kernel/generic/include/ipc/event_types.h&lt;br /&gt;~ /trunk/kernel/generic/include/macros.h&lt;br /&gt;~ /trunk/kernel/generic/src/proc/task.c&lt;br /&gt;</description><link>https://historic.helenos.org/revision.php?repname=HelenOS&amp;path=%2F&amp;isdir=1&amp;rev=4448&amp;peg=4468</link><guid>https://historic.helenos.org/revision.php?repname=HelenOS&amp;path=%2F&amp;isdir=1&amp;rev=4448&amp;peg=4468</guid></item>
<item><pubDate>Tue, 02 Jun 2009 19:25:31 +0200</pubDate><dc:creator>decky</dc:creator><title>Rev 4447 – remove type definition which is not needed anywhere</title><description>&lt;div&gt;&lt;strong&gt;decky – 1 file(s) modified&lt;/strong&gt;&lt;br/&gt;remove type definition which is not needed anywhere&lt;/div&gt;~ /trunk/boot/arch/ia64/loader/types.h&lt;br /&gt;</description><link>https://historic.helenos.org/revision.php?repname=HelenOS&amp;path=%2F&amp;isdir=1&amp;rev=4447&amp;peg=4468</link><guid>https://historic.helenos.org/revision.php?repname=HelenOS&amp;path=%2F&amp;isdir=1&amp;rev=4447&amp;peg=4468</guid></item>
<item><pubDate>Tue, 02 Jun 2009 19:21:54 +0200</pubDate><dc:creator>decky</dc:creator><title>Rev 4446 – getvc: a task which acquires a console device (this is ...</title><description>&lt;div&gt;&lt;strong&gt;decky – 6 file(s) modified&lt;/strong&gt;&lt;br/&gt;getvc: a task which acquires a console device&lt;br /&gt;
(this is a preliminary commit which does nothing, the bulk of the changes will be commited later)&lt;/div&gt;+ /trunk/uspace/app/getvc&lt;br /&gt;+ /trunk/uspace/app/getvc/getvc.c&lt;br /&gt;+ /trunk/uspace/app/getvc/getvc.h&lt;br /&gt;+ /trunk/uspace/app/getvc/Makefile&lt;br /&gt;+ /trunk/uspace/app/getvc/version.c &lt;i&gt;(copied from /trunk/uspace/app/init/version.c@4430)&lt;/i&gt;&lt;br /&gt;+ /trunk/uspace/app/getvc/version.h &lt;i&gt;(copied from /trunk/uspace/app/init/version.h@4430)&lt;/i&gt;&lt;br /&gt;</description><link>https://historic.helenos.org/revision.php?repname=HelenOS&amp;path=%2F&amp;isdir=1&amp;rev=4446&amp;peg=4468</link><guid>https://historic.helenos.org/revision.php?repname=HelenOS&amp;path=%2F&amp;isdir=1&amp;rev=4446&amp;peg=4468</guid></item>
<item><pubDate>Mon, 01 Jun 2009 18:56:57 +0200</pubDate><dc:creator>decky</dc:creator><title>Rev 4445 – revert commit 4443 and implement a much finer solution as ...</title><description>&lt;div&gt;&lt;strong&gt;decky – 2 file(s) modified&lt;/strong&gt;&lt;br/&gt;revert commit 4443 and implement a much finer solution as suggested by Jakub Jermar in commit 4444&lt;/div&gt;~ /trunk/uspace/srv/vfs/vfs_lookup.c&lt;br /&gt;~ /trunk/uspace/srv/vfs/vfs_ops.c&lt;br /&gt;</description><link>https://historic.helenos.org/revision.php?repname=HelenOS&amp;path=%2F&amp;isdir=1&amp;rev=4445&amp;peg=4468</link><guid>https://historic.helenos.org/revision.php?repname=HelenOS&amp;path=%2F&amp;isdir=1&amp;rev=4445&amp;peg=4468</guid></item>
<item><pubDate>Fri, 29 May 2009 21:27:22 +0200</pubDate><dc:creator>jermar</dc:creator><title>Rev 4444 – Put a comment for consideration.</title><description>&lt;div&gt;&lt;strong&gt;jermar – 1 file(s) modified&lt;/strong&gt;&lt;br/&gt;Put a comment for consideration.&lt;/div&gt;~ /trunk/uspace/srv/vfs/vfs_lookup.c&lt;br /&gt;</description><link>https://historic.helenos.org/revision.php?repname=HelenOS&amp;path=%2F&amp;isdir=1&amp;rev=4444&amp;peg=4468</link><guid>https://historic.helenos.org/revision.php?repname=HelenOS&amp;path=%2F&amp;isdir=1&amp;rev=4444&amp;peg=4468</guid></item>
<item><pubDate>Fri, 29 May 2009 20:01:08 +0200</pubDate><dc:creator>decky</dc:creator><title>Rev 4443 – serialization of VFS_OPEN implementation to avoid lockup by concurrent open() ...</title><description>&lt;div&gt;&lt;strong&gt;decky – 1 file(s) modified&lt;/strong&gt;&lt;br/&gt;serialization of VFS_OPEN implementation to avoid lockup by concurrent open() operations from multiple tasks&lt;/div&gt;~ /trunk/uspace/srv/vfs/vfs_ops.c&lt;br /&gt;</description><link>https://historic.helenos.org/revision.php?repname=HelenOS&amp;path=%2F&amp;isdir=1&amp;rev=4443&amp;peg=4468</link><guid>https://historic.helenos.org/revision.php?repname=HelenOS&amp;path=%2F&amp;isdir=1&amp;rev=4443&amp;peg=4468</guid></item>
<item><pubDate>Fri, 29 May 2009 05:19:29 +0200</pubDate><dc:creator>svoboda</dc:creator><title>Rev 4442 – Support more than one disk in gxe_bd (hardcoded to 2).</title><description>&lt;div&gt;&lt;strong&gt;svoboda – 1 file(s) modified&lt;/strong&gt;&lt;br/&gt;Support more than one disk in gxe_bd (hardcoded to 2).&lt;/div&gt;~ /trunk/uspace/srv/bd/gxe_bd/gxe_bd.c&lt;br /&gt;</description><link>https://historic.helenos.org/revision.php?repname=HelenOS&amp;path=%2F&amp;isdir=1&amp;rev=4442&amp;peg=4468</link><guid>https://historic.helenos.org/revision.php?repname=HelenOS&amp;path=%2F&amp;isdir=1&amp;rev=4442&amp;peg=4468</guid></item>
<item><pubDate>Fri, 29 May 2009 04:50:01 +0200</pubDate><dc:creator>svoboda</dc:creator><title>Rev 4441 – Also add gxe_bd to ramdisk on arm32.</title><description>&lt;div&gt;&lt;strong&gt;svoboda – 1 file(s) modified&lt;/strong&gt;&lt;br/&gt;Also add gxe_bd to ramdisk on arm32.&lt;/div&gt;~ /trunk/boot/arch/arm32/loader/Makefile&lt;br /&gt;</description><link>https://historic.helenos.org/revision.php?repname=HelenOS&amp;path=%2F&amp;isdir=1&amp;rev=4441&amp;peg=4468</link><guid>https://historic.helenos.org/revision.php?repname=HelenOS&amp;path=%2F&amp;isdir=1&amp;rev=4441&amp;peg=4468</guid></item>
<item><pubDate>Thu, 28 May 2009 21:55:56 +0200</pubDate><dc:creator>jermar</dc:creator><title>Rev 4440 – Large I/O areas actually work as expected. Fix the definition ...</title><description>&lt;div&gt;&lt;strong&gt;jermar – 1 file(s) modified&lt;/strong&gt;&lt;br/&gt;Large I/O areas actually work as expected. Fix the definition of the gxe_bd device and pio_enable() the whole I/O area at once.&lt;/div&gt;~ /trunk/uspace/srv/bd/gxe_bd/gxe_bd.c&lt;br /&gt;</description><link>https://historic.helenos.org/revision.php?repname=HelenOS&amp;path=%2F&amp;isdir=1&amp;rev=4440&amp;peg=4468</link><guid>https://historic.helenos.org/revision.php?repname=HelenOS&amp;path=%2F&amp;isdir=1&amp;rev=4440&amp;peg=4468</guid></item>
<item><pubDate>Thu, 28 May 2009 19:24:27 +0200</pubDate><dc:creator>trochtova</dc:creator><title>Rev 4439 – dd branch synchronized with trunk (revision 4438)</title><description>&lt;div&gt;&lt;strong&gt;trochtova – 41 file(s) modified&lt;/strong&gt;&lt;br/&gt;dd branch synchronized with trunk (revision 4438)&lt;/div&gt;~ /branches/dd/boot/arch/amd64/Makefile.inc&lt;br /&gt;~ /branches/dd/boot/arch/arm32/loader/main.c&lt;br /&gt;~ /branches/dd/boot/arch/arm32/loader/Makefile&lt;br /&gt;~ /branches/dd/boot/arch/ia32/Makefile.inc&lt;br /&gt;~ /branches/dd/boot/arch/ia64/loader/Makefile&lt;br /&gt;~ /branches/dd/boot/arch/mips32/loader/Makefile&lt;br /&gt;~ /branches/dd/boot/arch/ppc32/loader/Makefile&lt;br /&gt;~ /branches/dd/boot/arch/sparc64/loader/Makefile&lt;br /&gt;~ /branches/dd/HelenOS.config&lt;br /&gt;~ /branches/dd/kernel/generic/src/ipc/sysipc.c&lt;br /&gt;~ /branches/dd/uspace/lib/libblock/libblock.c&lt;br /&gt;~ /branches/dd/uspace/lib/libblock/libblock.h&lt;br /&gt;~ /branches/dd/uspace/lib/libfs/libfs.c&lt;br /&gt;~ /branches/dd/uspace/lib/libfs/libfs.h&lt;br /&gt;~ /branches/dd/uspace/Makefile&lt;br /&gt;~ /branches/dd/uspace/srv/bd/gxe_bd/gxe_bd.c&lt;br /&gt;+ /branches/dd/uspace/srv/bd/rd &lt;i&gt;(copied from /trunk/uspace/srv/bd/rd@4438)&lt;/i&gt;&lt;br /&gt;x /branches/dd/uspace/srv/console/anim_1.ppm&lt;br /&gt;x /branches/dd/uspace/srv/console/anim_2.ppm&lt;br /&gt;x /branches/dd/uspace/srv/console/anim_3.ppm&lt;br /&gt;x /branches/dd/uspace/srv/console/anim_4.ppm&lt;br /&gt;~ /branches/dd/uspace/srv/console/console.c&lt;br /&gt;~ /branches/dd/uspace/srv/console/console.h&lt;br /&gt;x /branches/dd/uspace/srv/console/cons_has_data.ppm&lt;br /&gt;x /branches/dd/uspace/srv/console/cons_idle.ppm&lt;br /&gt;x /branches/dd/uspace/srv/console/cons_kernel.ppm&lt;br /&gt;x /branches/dd/uspace/srv/console/cons_selected.ppm&lt;br /&gt;~ /branches/dd/uspace/srv/console/gcons.c&lt;br /&gt;~ /branches/dd/uspace/srv/console/gcons.h&lt;br /&gt;+ /branches/dd/uspace/srv/console/gfx &lt;i&gt;(copied from /trunk/uspace/srv/console/gfx@4438)&lt;/i&gt;&lt;br /&gt;x /branches/dd/uspace/srv/console/helenos.ppm&lt;br /&gt;~ /branches/dd/uspace/srv/console/Makefile&lt;br /&gt;x /branches/dd/uspace/srv/console/nameic.ppm&lt;br /&gt;~ /branches/dd/uspace/srv/console/screenbuffer.c&lt;br /&gt;~ /branches/dd/uspace/srv/console/screenbuffer.h&lt;br /&gt;~ /branches/dd/uspace/srv/fs/fat/fat_ops.c&lt;br /&gt;~ /branches/dd/uspace/srv/fs/tmpfs/tmpfs_dump.c&lt;br /&gt;~ /branches/dd/uspace/srv/fs/tmpfs/tmpfs_ops.c&lt;br /&gt;x /branches/dd/uspace/srv/rd&lt;br /&gt;~ /branches/dd/uspace/srv/vfs/vfs_file.c&lt;br /&gt;~ /branches/dd/uspace/srv/vfs/vfs_ops.c&lt;br /&gt;</description><link>https://historic.helenos.org/revision.php?repname=HelenOS&amp;path=%2F&amp;isdir=1&amp;rev=4439&amp;peg=4468</link><guid>https://historic.helenos.org/revision.php?repname=HelenOS&amp;path=%2F&amp;isdir=1&amp;rev=4439&amp;peg=4468</guid></item>
<item><pubDate>Thu, 28 May 2009 18:11:32 +0200</pubDate><dc:creator>trochtova</dc:creator><title>Rev 4438 – pci - intel configuration method 1, small bug fixes</title><description>&lt;div&gt;&lt;strong&gt;trochtova – 7 file(s) modified&lt;/strong&gt;&lt;br/&gt;pci - intel configuration method 1, small bug fixes&lt;/div&gt;+ /branches/dd/uspace/srv/pci/intel_method1.c&lt;br /&gt;~ /branches/dd/uspace/srv/pci/Makefile&lt;br /&gt;~ /branches/dd/uspace/srv/pci/pci.c&lt;br /&gt;~ /branches/dd/uspace/srv/pci/pci.h&lt;br /&gt;~ /branches/dd/uspace/srv/pci/pci_bus.h&lt;br /&gt;~ /branches/dd/uspace/srv/pci/pci_conf.h&lt;br /&gt;~ /branches/dd/uspace/srv/pci/psycho.c&lt;br /&gt;</description><link>https://historic.helenos.org/revision.php?repname=HelenOS&amp;path=%2F&amp;isdir=1&amp;rev=4438&amp;peg=4468</link><guid>https://historic.helenos.org/revision.php?repname=HelenOS&amp;path=%2F&amp;isdir=1&amp;rev=4438&amp;peg=4468</guid></item>
<item><pubDate>Thu, 28 May 2009 11:47:22 +0200</pubDate><dc:creator>jermar</dc:creator><title>Rev 4437 – Fix function definition.</title><description>&lt;div&gt;&lt;strong&gt;jermar – 1 file(s) modified&lt;/strong&gt;&lt;br/&gt;Fix function definition.&lt;/div&gt;~ /trunk/uspace/srv/vfs/vfs_ops.c&lt;br /&gt;</description><link>https://historic.helenos.org/revision.php?repname=HelenOS&amp;path=%2F&amp;isdir=1&amp;rev=4437&amp;peg=4468</link><guid>https://historic.helenos.org/revision.php?repname=HelenOS&amp;path=%2F&amp;isdir=1&amp;rev=4437&amp;peg=4468</guid></item>
<item><pubDate>Thu, 28 May 2009 11:34:27 +0200</pubDate><dc:creator>jermar</dc:creator><title>Rev 4436 – Allow arbitrarily large boot images on arm32.</title><description>&lt;div&gt;&lt;strong&gt;jermar – 1 file(s) modified&lt;/strong&gt;&lt;br/&gt;Allow arbitrarily large boot images on arm32.&lt;/div&gt;~ /trunk/boot/arch/arm32/loader/main.c&lt;br /&gt;</description><link>https://historic.helenos.org/revision.php?repname=HelenOS&amp;path=%2F&amp;isdir=1&amp;rev=4436&amp;peg=4468</link><guid>https://historic.helenos.org/revision.php?repname=HelenOS&amp;path=%2F&amp;isdir=1&amp;rev=4436&amp;peg=4468</guid></item>
<item><pubDate>Wed, 27 May 2009 21:10:09 +0200</pubDate><dc:creator>jermar</dc:creator><title>Rev 4435 – More conversions to dev_handle_t.</title><description>&lt;div&gt;&lt;strong&gt;jermar – 3 file(s) modified&lt;/strong&gt;&lt;br/&gt;More conversions to dev_handle_t.&lt;/div&gt;~ /trunk/uspace/lib/libblock/libblock.c&lt;br /&gt;~ /trunk/uspace/lib/libblock/libblock.h&lt;br /&gt;~ /trunk/uspace/srv/fs/tmpfs/tmpfs_dump.c&lt;br /&gt;</description><link>https://historic.helenos.org/revision.php?repname=HelenOS&amp;path=%2F&amp;isdir=1&amp;rev=4435&amp;peg=4468</link><guid>https://historic.helenos.org/revision.php?repname=HelenOS&amp;path=%2F&amp;isdir=1&amp;rev=4435&amp;peg=4468</guid></item>
<item><pubDate>Wed, 27 May 2009 20:48:46 +0200</pubDate><dc:creator>jermar</dc:creator><title>Rev 4434 – Fix type for dev_handle.</title><description>&lt;div&gt;&lt;strong&gt;jermar – 1 file(s) modified&lt;/strong&gt;&lt;br/&gt;Fix type for dev_handle.&lt;/div&gt;~ /trunk/uspace/lib/libblock/libblock.c&lt;br /&gt;</description><link>https://historic.helenos.org/revision.php?repname=HelenOS&amp;path=%2F&amp;isdir=1&amp;rev=4434&amp;peg=4468</link><guid>https://historic.helenos.org/revision.php?repname=HelenOS&amp;path=%2F&amp;isdir=1&amp;rev=4434&amp;peg=4468</guid></item>
<item><pubDate>Tue, 26 May 2009 20:20:45 +0200</pubDate><dc:creator>rimsky</dc:creator><title>Rev 4433 – Fixed a TSB problem.</title><description>&lt;div&gt;&lt;strong&gt;rimsky – 4 file(s) modified&lt;/strong&gt;&lt;br/&gt;Fixed a TSB problem.&lt;/div&gt;~ /branches/sparc/kernel/arch/sparc64/include/trap/exception.h&lt;br /&gt;~ /branches/sparc/kernel/arch/sparc64/src/mm/sun4v/as.c&lt;br /&gt;~ /branches/sparc/kernel/arch/sparc64/src/mm/sun4v/tsb.c&lt;br /&gt;~ /branches/sparc/kernel/arch/sparc64/src/trap/sun4v/trap_table.S&lt;br /&gt;</description><link>https://historic.helenos.org/revision.php?repname=HelenOS&amp;path=%2F&amp;isdir=1&amp;rev=4433&amp;peg=4468</link><guid>https://historic.helenos.org/revision.php?repname=HelenOS&amp;path=%2F&amp;isdir=1&amp;rev=4433&amp;peg=4468</guid></item>
<item><pubDate>Sat, 23 May 2009 18:28:28 +0200</pubDate><dc:creator>decky</dc:creator><title>Rev 4432 – avoid accessing uninitialized files array at all times</title><description>&lt;div&gt;&lt;strong&gt;decky – 1 file(s) modified&lt;/strong&gt;&lt;br/&gt;avoid accessing uninitialized files array at all times&lt;/div&gt;~ /trunk/uspace/srv/vfs/vfs_file.c&lt;br /&gt;</description><link>https://historic.helenos.org/revision.php?repname=HelenOS&amp;path=%2F&amp;isdir=1&amp;rev=4432&amp;peg=4468</link><guid>https://historic.helenos.org/revision.php?repname=HelenOS&amp;path=%2F&amp;isdir=1&amp;rev=4432&amp;peg=4468</guid></item>
<item><pubDate>Sat, 23 May 2009 18:25:58 +0200</pubDate><dc:creator>jermar</dc:creator><title>Rev 4431 – Hold the namespace rwlock during the entire operation of vfs_mount_internal(). ...</title><description>&lt;div&gt;&lt;strong&gt;jermar – 1 file(s) modified&lt;/strong&gt;&lt;br/&gt;Hold the namespace rwlock during the entire operation of vfs_mount_internal().&lt;br /&gt;
Get rid of rootfs futex, which is not needed anymore.&lt;br /&gt;
Do not instantiate VFS node for the mounted root if the mount failed.&lt;/div&gt;~ /trunk/uspace/srv/vfs/vfs_ops.c&lt;br /&gt;</description><link>https://historic.helenos.org/revision.php?repname=HelenOS&amp;path=%2F&amp;isdir=1&amp;rev=4431&amp;peg=4468</link><guid>https://historic.helenos.org/revision.php?repname=HelenOS&amp;path=%2F&amp;isdir=1&amp;rev=4431&amp;peg=4468</guid></item>
<item><pubDate>Sat, 23 May 2009 11:51:37 +0200</pubDate><dc:creator>jermar</dc:creator><title>Rev 4430 – Surprisingly easy support for homogenous mounts. It works by simply ...</title><description>&lt;div&gt;&lt;strong&gt;jermar – 1 file(s) modified&lt;/strong&gt;&lt;br/&gt;Surprisingly easy support for homogenous mounts.&lt;br /&gt;
It works by simply allowing autoconnections.&lt;/div&gt;~ /trunk/kernel/generic/src/ipc/sysipc.c&lt;br /&gt;</description><link>https://historic.helenos.org/revision.php?repname=HelenOS&amp;path=%2F&amp;isdir=1&amp;rev=4430&amp;peg=4468</link><guid>https://historic.helenos.org/revision.php?repname=HelenOS&amp;path=%2F&amp;isdir=1&amp;rev=4430&amp;peg=4468</guid></item>
<item><pubDate>Fri, 22 May 2009 21:18:39 +0200</pubDate><dc:creator>jermar</dc:creator><title>Rev 4429 – Add fs_handle argument to libfs_mount() needed to recognize homogenous mounts.</title><description>&lt;div&gt;&lt;strong&gt;jermar – 4 file(s) modified&lt;/strong&gt;&lt;br/&gt;Add fs_handle argument to libfs_mount() needed to recognize homogenous mounts.&lt;/div&gt;~ /trunk/uspace/lib/libfs/libfs.c&lt;br /&gt;~ /trunk/uspace/lib/libfs/libfs.h&lt;br /&gt;~ /trunk/uspace/srv/fs/fat/fat_ops.c&lt;br /&gt;~ /trunk/uspace/srv/fs/tmpfs/tmpfs_ops.c&lt;br /&gt;</description><link>https://historic.helenos.org/revision.php?repname=HelenOS&amp;path=%2F&amp;isdir=1&amp;rev=4429&amp;peg=4468</link><guid>https://historic.helenos.org/revision.php?repname=HelenOS&amp;path=%2F&amp;isdir=1&amp;rev=4429&amp;peg=4468</guid></item>
</channel></rss>