[Chaos-svn] SF.net SVN: chaos: [1226] trunk/chaos-old
Status: Pre-Alpha
Brought to you by:
sf_hal
|
From: <per...@us...> - 2007-03-11 20:54:19
|
Revision: 1226
http://chaos.svn.sourceforge.net/chaos/?rev=1226&view=rev
Author: perlundberg
Date: 2007-03-11 13:54:03 -0700 (Sun, 11 Mar 2007)
Log Message:
-----------
Some minor patches
Modified Paths:
--------------
trunk/chaos-old/libraries/system/system_calls.h
trunk/chaos-old/servers/network/makefile
trunk/chaos-old/storm/generic/system_call.c
trunk/chaos-old/storm/ia32/thread.c
Modified: trunk/chaos-old/libraries/system/system_calls.h
===================================================================
--- trunk/chaos-old/libraries/system/system_calls.h 2007-03-10 21:50:16 UTC (rev 1225)
+++ trunk/chaos-old/libraries/system/system_calls.h 2007-03-11 20:54:03 UTC (rev 1226)
@@ -114,7 +114,7 @@
return return_value;
}
-/* Wait for an IRQ. */
+/* Acknowledge that an IRQ has been raised. */
static inline return_type system_call_irq_acknowledge (unsigned int irq_number)
{
@@ -576,7 +576,7 @@
return return_value;
}
-/* Fork (;) off a new process. */
+/* Fork ( ;) ) off a new process. */
static inline return_type system_call_process_create (process_create_type *process_data)
{
Modified: trunk/chaos-old/servers/network/makefile
===================================================================
--- trunk/chaos-old/servers/network/makefile 2007-03-10 21:50:16 UTC (rev 1225)
+++ trunk/chaos-old/servers/network/makefile 2007-03-11 20:54:03 UTC (rev 1226)
@@ -2,23 +2,9 @@
## Author: Per Lundberg <pl...@ch...>
## Copyright 1999-2000 chaos development.
+## Copyright 2007 chaos development.
-## This program is free software; you can redistribute it and/or
-## modify it under the terms of the GNU General Public License as
-## published by the Free Software Foundation; either version 2 of the
-## License, or (at your option) any later version.
-
-## This program is distributed in the hope that it will be useful, but
-## WITHOUT ANY WARRANTY; without even the implied warranty of
-## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-## General Public License for more details.
-
-## You should have received a copy of the GNU General Public License
-## along with this program; if not, write to the Free Software
-## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
-## USA.
-
-SERVERS = 3c509 loopback ipv4 3com-pci realtek-pci # ne2000 tulip via-rhine
+SERVERS = 3c509 loopback ipv4 3com-pci realtek-pci ne2000 # tulip via-rhine
PREFIX = /tftpboot/chaos
.PHONY: all autochaos clean config install tags
Modified: trunk/chaos-old/storm/generic/system_call.c
===================================================================
--- trunk/chaos-old/storm/generic/system_call.c 2007-03-10 21:50:16 UTC (rev 1225)
+++ trunk/chaos-old/storm/generic/system_call.c 2007-03-11 20:54:03 UTC (rev 1226)
@@ -3,22 +3,8 @@
/* Author: Per Lundberg <pl...@ch...> */
/* Copyright 2000 chaos development. */
+/* Copyright 2007 chaos development */
-/* This program is free software; you can redistribute it and/or
- modify it under the terms of the GNU General Public License as
- published by the Free Software Foundation; either version 2 of the
- License, or (at your option) any later version.
-
- This program is distributed in the hope that it will be useful, but
- WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- General Public License for more details.
-
- You should have received a copy of the GNU General Public License
- along with this program; if not, write to the Free Software
- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
- USA. */
-
/* This file contains a wrapper for each system call function, which
is responsible for locking the right mutex. Also, it serves as an
abstraction layer for the architecture dependent parts of the
Modified: trunk/chaos-old/storm/ia32/thread.c
===================================================================
--- trunk/chaos-old/storm/ia32/thread.c 2007-03-10 21:50:16 UTC (rev 1225)
+++ trunk/chaos-old/storm/ia32/thread.c 2007-03-11 20:54:03 UTC (rev 1226)
@@ -532,7 +532,7 @@
break;
}
- /* Put a process to sleep. */
+ /* Put a thread to sleep. */
case THREAD_SLEEP:
{
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|