[project @ 1999-02-05 16:02:18 by simonm]
authorsimonm <unknown>
Fri, 5 Feb 1999 16:03:04 +0000 (16:03 +0000)
committersimonm <unknown>
Fri, 5 Feb 1999 16:03:04 +0000 (16:03 +0000)
Copyright police.

85 files changed:
ghc/includes/Assembler.h
ghc/includes/Block.h
ghc/includes/CCall.h
ghc/includes/ClosureMacros.h
ghc/includes/ClosureTypes.h
ghc/includes/Closures.h
ghc/includes/Constants.h
ghc/includes/Hooks.h
ghc/includes/InfoMacros.h
ghc/includes/InfoTables.h
ghc/includes/MachDeps.h
ghc/includes/MachRegs.h
ghc/includes/Prelude.h
ghc/includes/PrimOps.h
ghc/includes/Profiling.h
ghc/includes/Regs.h
ghc/includes/Rts.h
ghc/includes/RtsAPI.h
ghc/includes/Stable.h
ghc/includes/Stg.h
ghc/includes/StgMacros.h
ghc/includes/StgMiscClosures.h
ghc/includes/StgStorage.h
ghc/includes/StgTicky.h
ghc/includes/StgTypes.h
ghc/includes/TSO.h
ghc/includes/TailCalls.h
ghc/includes/Updates.h
ghc/rts/Assembler.c
ghc/rts/BlockAlloc.c
ghc/rts/BlockAlloc.h
ghc/rts/Bytecodes.h
ghc/rts/DebugProf.c
ghc/rts/Disassembler.c
ghc/rts/Disassembler.h
ghc/rts/Evaluator.c
ghc/rts/Evaluator.h
ghc/rts/ForeignCall.c
ghc/rts/ForeignCall.h
ghc/rts/GC.c
ghc/rts/GC.h
ghc/rts/HeapStackCheck.hc
ghc/rts/Itimer.c
ghc/rts/Itimer.h
ghc/rts/MBlock.c
ghc/rts/MBlock.h
ghc/rts/Main.h
ghc/rts/PrimOps.hc
ghc/rts/Printer.c
ghc/rts/Printer.h
ghc/rts/ProfRts.h
ghc/rts/Profiling.c
ghc/rts/Proftimer.c
ghc/rts/QueueTemplate.h
ghc/rts/RtsAPI.c
ghc/rts/RtsFlags.c
ghc/rts/RtsFlags.h
ghc/rts/RtsStartup.c
ghc/rts/RtsUtils.c
ghc/rts/RtsUtils.h
ghc/rts/Sanity.c
ghc/rts/Sanity.h
ghc/rts/Schedule.c
ghc/rts/Schedule.h
ghc/rts/Signals.c
ghc/rts/Signals.h
ghc/rts/Stable.c
ghc/rts/StablePriv.h
ghc/rts/Stats.c
ghc/rts/Stats.h
ghc/rts/StgCRun.c
ghc/rts/StgLongLong.c
ghc/rts/StgMiscClosures.hc
ghc/rts/StgPrimFloat.c
ghc/rts/StgRun.h
ghc/rts/StgStartup.h
ghc/rts/StgStartup.hc
ghc/rts/StgStdThunks.hc
ghc/rts/Storage.c
ghc/rts/Storage.h
ghc/rts/StoragePriv.h
ghc/rts/Ticky.c
ghc/rts/Updates.hc
ghc/rts/Weak.c
ghc/rts/Weak.h

index 105acf3..98c1479 100644 (file)
@@ -1,12 +1,10 @@
 /* -*- mode: hugs-c; -*- */
 /* -----------------------------------------------------------------------------
- * Bytecode assembler
+ * $Id: Assembler.h,v 1.4 1999/02/05 16:02:18 simonm Exp $
  *
- * Copyright (c) 1994-1998.
+ * (c) The GHC Team 1994-1998.
  *
- * $RCSfile: Assembler.h,v $
- * $Revision: 1.3 $
- * $Date: 1999/01/18 15:23:30 $
+ * Bytecode assembler
  *
  * NB This is one of the few files shared between Hugs and the runtime system,
  * so it is very important that it not conflict with either and that it not
index 113145e..f924a8e 100644 (file)
@@ -1,5 +1,7 @@
 /* -----------------------------------------------------------------------------
- * $Id: Block.h,v 1.3 1999/01/13 17:25:51 simonm Exp $
+ * $Id: Block.h,v 1.4 1999/02/05 16:02:19 simonm Exp $
+ *
+ * (c) The GHC Team, 1998-1999
  *
  * Block structure for the storage manager
  *
index 8ad6499..97ff9df 100644 (file)
@@ -1,7 +1,10 @@
 /* -----------------------------------------------------------------------------
- * $Id: CCall.h,v 1.2 1998/12/02 13:20:53 simonm Exp $
+ * $Id: CCall.h,v 1.3 1999/02/05 16:02:19 simonm Exp $
+ *
+ * (c) The GHC Team, 1998-1999
  *
  * Macros for performing C calls from the STG world.
+ *
  * -------------------------------------------------------------------------- */
 
 #ifndef CCALL_H
index 76bec3e..c99caaa 100644 (file)
@@ -1,5 +1,7 @@
 /* ----------------------------------------------------------------------------
- * $Id: ClosureMacros.h,v 1.3 1999/01/13 17:25:52 simonm Exp $
+ * $Id: ClosureMacros.h,v 1.4 1999/02/05 16:02:20 simonm Exp $
+ *
+ * (c) The GHC Team, 1998-1999
  *
  * Macros for building and manipulating closures
  *
index 65502a7..544bc76 100644 (file)
@@ -1,6 +1,8 @@
 /* ----------------------------------------------------------------------------
- * $Id: ClosureTypes.h,v 1.8 1999/02/05 15:25:01 simonm Exp $
+ * $Id: ClosureTypes.h,v 1.9 1999/02/05 16:02:20 simonm Exp $
  * 
+ * (c) The GHC Team, 1998-1999
+ *
  * Closure Type Constants
  *
  * -------------------------------------------------------------------------- */
index 3557827..f1b9169 100644 (file)
@@ -1,5 +1,7 @@
 /* ----------------------------------------------------------------------------
- * $Id: Closures.h,v 1.6 1999/02/05 12:41:31 sof Exp $
+ * $Id: Closures.h,v 1.7 1999/02/05 16:02:21 simonm Exp $
+ *
+ * (c) The GHC Team, 1998-1999
  *
  * Closures
  *
index fbb3dbf..2e2c37b 100644 (file)
@@ -1,5 +1,7 @@
 /* ----------------------------------------------------------------------------
- * $Id: Constants.h,v 1.4 1999/01/26 16:16:20 simonm Exp $
+ * $Id: Constants.h,v 1.5 1999/02/05 16:02:21 simonm Exp $
+ *
+ * (c) The GHC Team, 1998-1999
  *
  * Constants
  *
index 3a53f19..16e2877 100644 (file)
@@ -1,5 +1,7 @@
 /* -----------------------------------------------------------------------------
- * $Id: Hooks.h,v 1.2 1998/12/02 13:21:08 simonm Exp $
+ * $Id: Hooks.h,v 1.3 1999/02/05 16:02:22 simonm Exp $
+ *
+ * (c) The GHC Team, 1998-1999
  *
  * User-overridable RTS hooks.
  *
index 4ff825e..c64864e 100644 (file)
@@ -1,6 +1,8 @@
 /* ----------------------------------------------------------------------------
- * $Id: InfoMacros.h,v 1.2 1998/12/02 13:21:09 simonm Exp $
+ * $Id: InfoMacros.h,v 1.3 1999/02/05 16:02:22 simonm Exp $
  * 
+ * (c) The GHC Team, 1998-1999
+ *
  * Macros for building and deconstructing info tables.
  *
  * -------------------------------------------------------------------------- */
index e7bc9a1..38079b7 100644 (file)
@@ -1,6 +1,8 @@
 /* ----------------------------------------------------------------------------
- * $Id: InfoTables.h,v 1.9 1999/02/05 15:25:02 simonm Exp $
+ * $Id: InfoTables.h,v 1.10 1999/02/05 16:02:23 simonm Exp $
  * 
+ * (c) The GHC Team, 1998-1999
+ *
  * Info Tables
  *
  * -------------------------------------------------------------------------- */
index 1b52fd0..eb8b6d7 100644 (file)
@@ -1,7 +1,8 @@
 /* -----------------------------------------------------------------------------
- * $Id: MachDeps.h,v 1.2 1998/12/02 13:21:12 simonm Exp $
+ * $Id: MachDeps.h,v 1.3 1999/02/05 16:02:23 simonm Exp $
  *
  * (c) The GRASP/AQUA Project, Glasgow University, 1998
+ * (c) The GHC Team, 1998-1999
  * 
  * Definitions that characterise machine specific properties of basic
  * Stg types provided as unboxed types (mirrors the typedefs in
index b4272d7..d69b7b5 100644 (file)
@@ -1,5 +1,7 @@
 /* -----------------------------------------------------------------------------
- * $Id: MachRegs.h,v 1.3 1999/01/18 14:31:50 sof Exp $
+ * $Id: MachRegs.h,v 1.4 1999/02/05 16:02:23 simonm Exp $
+ *
+ * (c) The GHC Team, 1998-1999
  *
  * Registers used in STG code.  Might or might not correspond to
  * actual machine registers.
index dedfdbe..a66c54b 100644 (file)
@@ -1,5 +1,7 @@
 /* -----------------------------------------------------------------------------
- * $Id: Prelude.h,v 1.4 1999/01/27 14:51:14 simonpj Exp $
+ * $Id: Prelude.h,v 1.5 1999/02/05 16:02:24 simonm Exp $
+ *
+ * (c) The GHC Team, 1998-1999
  *
  * Prelude identifiers that we sometimes need to refer to in the RTS.
  *
index fe32074..119894d 100644 (file)
@@ -1,5 +1,7 @@
 /* -----------------------------------------------------------------------------
- * $Id: PrimOps.h,v 1.15 1999/02/05 15:25:03 simonm Exp $
+ * $Id: PrimOps.h,v 1.16 1999/02/05 16:02:25 simonm Exp $
+ *
+ * (c) The GHC Team, 1998-1999
  *
  * Macros for primitive operations in STG-ish C code.
  *
index 8be56fa..0c3ca36 100644 (file)
@@ -1,7 +1,10 @@
 /* -----------------------------------------------------------------------------
- * $Id: Profiling.h,v 1.2 1998/12/02 13:21:19 simonm Exp $
+ * $Id: Profiling.h,v 1.3 1999/02/05 16:02:26 simonm Exp $
+ *
+ * (c) The GHC Team, 1998-1999
  *
  * Cost-Centre Stack Profiling Include
+ *
  * ---------------------------------------------------------------------------*/
 
 
index a490820..e1b59ff 100644 (file)
@@ -1,5 +1,7 @@
 /* -----------------------------------------------------------------------------
- * $Id: Regs.h,v 1.2 1998/12/02 13:21:20 simonm Exp $
+ * $Id: Regs.h,v 1.3 1999/02/05 16:02:26 simonm Exp $
+ *
+ * (c) The GHC Team, 1998-1999
  *
  * Registers used in STG code.  Might or might not correspond to
  * actual machine registers.
index b649e0b..77f095c 100644 (file)
@@ -1,5 +1,7 @@
 /* -----------------------------------------------------------------------------
- * $Id: Rts.h,v 1.5 1999/01/26 11:12:57 simonm Exp $
+ * $Id: Rts.h,v 1.6 1999/02/05 16:02:27 simonm Exp $
+ *
+ * (c) The GHC Team, 1998-1999
  *
  * Top-level include file for the RTS itself
  *
index fc22d0b..cc6f7e7 100644 (file)
@@ -1,5 +1,7 @@
 /* ----------------------------------------------------------------------------
- * $Id: RtsAPI.h,v 1.2 1998/12/02 13:21:21 simonm Exp $
+ * $Id: RtsAPI.h,v 1.3 1999/02/05 16:02:27 simonm Exp $
+ *
+ * (c) The GHC Team, 1998-1999
  *
  * API for invoking Haskell functions via the RTS
  *
index 7ffa369..4552439 100644 (file)
@@ -1,5 +1,7 @@
 /* -----------------------------------------------------------------------------
- * $Id: Stable.h,v 1.1 1999/01/26 14:04:46 simonm Exp $
+ * $Id: Stable.h,v 1.2 1999/02/05 16:02:28 simonm Exp $
+ *
+ * (c) The GHC Team, 1998-1999
  *
  * Stable names and stable pointers
  *
index 3c9a1b4..f38eba4 100644 (file)
@@ -1,5 +1,7 @@
 /* -----------------------------------------------------------------------------
- * $Id: Stg.h,v 1.5 1999/01/26 11:12:57 simonm Exp $
+ * $Id: Stg.h,v 1.6 1999/02/05 16:02:28 simonm Exp $
+ *
+ * (c) The GHC Team, 1998-1999
  *
  * Top-level include file for everything STG-ish.  
  *
index c4a1421..646f0fc 100644 (file)
@@ -1,5 +1,7 @@
 /* -----------------------------------------------------------------------------
- * $Id: StgMacros.h,v 1.4 1999/01/23 17:51:27 sof Exp $
+ * $Id: StgMacros.h,v 1.5 1999/02/05 16:02:28 simonm Exp $
+ *
+ * (c) The GHC Team, 1998-1999
  *
  * Macros used for writing STG-ish C code.
  *
index 2f625b6..12f0a1c 100644 (file)
@@ -1,5 +1,7 @@
 /* -----------------------------------------------------------------------------
- * $Id: StgMiscClosures.h,v 1.8 1999/02/05 15:25:03 simonm Exp $
+ * $Id: StgMiscClosures.h,v 1.9 1999/02/05 16:02:29 simonm Exp $
+ *
+ * (c) The GHC Team, 1998-1999
  *
  * Entry code for various built-in closure types.
  *
index 964757b..c01f68b 100644 (file)
@@ -1,5 +1,7 @@
 /* -----------------------------------------------------------------------------
- * $Id: StgStorage.h,v 1.2 1998/12/02 13:21:41 simonm Exp $
+ * $Id: StgStorage.h,v 1.3 1999/02/05 16:02:29 simonm Exp $
+ *
+ * (c) The GHC Team, 1998-1999
  *
  * STG Storage Manger Interface
  *
index 014569e..bd4fa1c 100644 (file)
@@ -1,5 +1,8 @@
 /* ----------------------------------------------------------------------------
- * $Id: StgTicky.h,v 1.2 1999/02/02 14:21:28 simonm Exp $
+ * $Id: StgTicky.h,v 1.3 1999/02/05 16:02:30 simonm Exp $
+ *
+ * (c) The AQUA project, Glasgow University, 1994-1997
+ * (c) The GHC Team, 1998-1999
  *
  * Ticky-ticky profiling macros.
  *
index c067521..91f13b0 100644 (file)
@@ -1,5 +1,7 @@
 /* -----------------------------------------------------------------------------
- * $Id: StgTypes.h,v 1.3 1999/01/26 11:12:58 simonm Exp $
+ * $Id: StgTypes.h,v 1.4 1999/02/05 16:02:30 simonm Exp $
+ *
+ * (c) The GHC Team, 1998-1999
  *
  * Various C datatypes used in the run-time system.
 
index c5f53c4..f22cbe5 100644 (file)
@@ -1,5 +1,7 @@
 /* -----------------------------------------------------------------------------
- * $Id: TSO.h,v 1.3 1999/01/13 17:25:55 simonm Exp $
+ * $Id: TSO.h,v 1.4 1999/02/05 16:02:30 simonm Exp $
+ *
+ * (c) The GHC Team, 1998-1999
  *
  * The definitions for Thread State Objects.
  *
index b59abb4..ab6edd0 100644 (file)
@@ -1,5 +1,7 @@
 /* -----------------------------------------------------------------------------
- * $Id: TailCalls.h,v 1.2 1998/12/02 13:21:43 simonm Exp $
+ * $Id: TailCalls.h,v 1.3 1999/02/05 16:02:31 simonm Exp $
+ *
+ * (c) The GHC Team, 1998-1999
  *
  * Stuff for implementing proper tail jumps.
  *
index 04838e7..ebcebf1 100644 (file)
@@ -1,5 +1,7 @@
 /* -----------------------------------------------------------------------------
- * $Id: Updates.h,v 1.6 1999/01/21 10:31:45 simonm Exp $
+ * $Id: Updates.h,v 1.7 1999/02/05 16:02:31 simonm Exp $
+ *
+ * (c) The GHC Team, 1998-1999
  *
  * Definitions related to updates.
  *
index 42ebbc2..f1e71a1 100644 (file)
@@ -1,12 +1,10 @@
 /* -*- mode: hugs-c; -*- */
 /* --------------------------------------------------------------------------
- * Bytecode assembler
+ * $Id: Assembler.c,v 1.4 1999/02/05 16:02:34 simonm Exp $
  *
- * Copyright (c) 1994-1998.
+ * Copyright (c) The GHC Team 1994-1998.
  *
- * $RCSfile: Assembler.c,v $
- * $Revision: 1.3 $
- * $Date: 1999/01/27 14:51:16 $
+ * Bytecode assembler
  *
  * This module provides functions to construct BCOs and other closures
  * required by the bytecode compiler.
index 26f2a60..7c7dcae 100644 (file)
@@ -1,6 +1,8 @@
 /* -----------------------------------------------------------------------------
- * $Id: BlockAlloc.c,v 1.3 1999/01/13 17:25:37 simonm Exp $
+ * $Id: BlockAlloc.c,v 1.4 1999/02/05 16:02:35 simonm Exp $
  *
+ * (c) The GHC Team 1998-1999
+ * 
  * The block allocator and free list manager.
  *
  * This is the architecture independent part of the block allocator.
index a121917..ab6b199 100644 (file)
@@ -1,5 +1,7 @@
 /* -----------------------------------------------------------------------------
- * $Id: BlockAlloc.h,v 1.4 1999/02/03 16:32:47 simonm Exp $
+ * $Id: BlockAlloc.h,v 1.5 1999/02/05 16:02:36 simonm Exp $
+ *
+ * (c) The GHC Team, 1998-1999
  *
  * Block Allocator Interface
  *
index c484863..daf3a9e 100644 (file)
@@ -1,4 +1,12 @@
 /* -*- mode: hugs-c; -*- */
+/* -----------------------------------------------------------------------------
+ * $Id: Bytecodes.h,v 1.3 1999/02/05 16:02:36 simonm Exp $
+ *
+ * (c) The GHC Team, 1998-1999
+ *
+ * Bytecode definitions.
+ *
+ * ---------------------------------------------------------------------------*/
 
 /* --------------------------------------------------------------------------
  * Instructions
index cd7ff5b..7cd73eb 100644 (file)
@@ -1,7 +1,7 @@
 /* -----------------------------------------------------------------------------
- * $Id: DebugProf.c,v 1.5 1999/02/05 15:25:04 simonm Exp $
+ * $Id: DebugProf.c,v 1.6 1999/02/05 16:02:36 simonm Exp $
  *
- * (c) The GHC Team 1998
+ * (c) The GHC Team 1998-1999
  *
  * Simple Heap Profiling
  *
index 35d0c1c..65ef9f4 100644 (file)
@@ -1,12 +1,11 @@
 /* -*- mode: hugs-c; -*- */
 /* -----------------------------------------------------------------------------
- * Bytecode disassembler
+ * $Id: Disassembler.c,v 1.3 1999/02/05 16:02:37 simonm Exp $
+ *
+ * Copyright (c) The GHC Team 1994-1999.
  *
- * Copyright (c) 1994-1998.
+ * Bytecode disassembler
  *
- * $RCSfile: Disassembler.c,v $
- * $Revision: 1.2 $
- * $Date: 1998/12/02 13:28:15 $
  * ---------------------------------------------------------------------------*/
 
 #include "Rts.h"
index 258ccab..d4d05a0 100644 (file)
@@ -1,5 +1,7 @@
 /* -----------------------------------------------------------------------------
- * $Id: Disassembler.h,v 1.2 1998/12/02 13:28:16 simonm Exp $
+ * $Id: Disassembler.h,v 1.3 1999/02/05 16:02:37 simonm Exp $
+ *
+ * (c) The GHC Team, 1998-1999
  *
  * Prototypes for functions in Disassembler.c
  *
index b27c128..ebc5bf4 100644 (file)
@@ -1,12 +1,11 @@
 
 /* -----------------------------------------------------------------------------
- * Bytecode evaluator
+ * $Id: Evaluator.c,v 1.8 1999/02/05 16:02:38 simonm Exp $
+ *
+ * Copyright (c) The GHC Team 1994-1999.
  *
- * Copyright (c) 1994-1998.
+ * Bytecode evaluator
  *
- * $RCSfile: Evaluator.c,v $
- * $Revision: 1.7 $
- * $Date: 1999/02/05 15:25:05 $
  * ---------------------------------------------------------------------------*/
 
 #include "Rts.h"
index 3f9d735..0ed9888 100644 (file)
@@ -1,5 +1,7 @@
 /* -----------------------------------------------------------------------------
- * $Id: Evaluator.h,v 1.3 1999/01/27 14:51:20 simonpj Exp $
+ * $Id: Evaluator.h,v 1.4 1999/02/05 16:02:40 simonm Exp $
+ *
+ * (c) The GHC Team, 1998-1999
  *
  * Prototypes for functions in Evaluator.c
  *
index 6974c29..ff78cb9 100644 (file)
@@ -1,12 +1,11 @@
 /* -*- mode: hugs-c; -*- */
 /* -----------------------------------------------------------------------------
- * Foreign Function calls
+ * $Id: ForeignCall.c,v 1.3 1999/02/05 16:02:40 simonm Exp $
+ *
+ * (c) The GHC Team 1994-1999.
  *
- * Copyright (c) 1994-1998.
+ * Foreign Function calls
  *
- * $RCSfile: ForeignCall.c,v $
- * $Revision: 1.2 $
- * $Date: 1998/12/02 13:28:21 $
  * ---------------------------------------------------------------------------*/
 
 #include "Rts.h"
index 508f49f..8718ca0 100644 (file)
@@ -1,5 +1,7 @@
 /* -----------------------------------------------------------------------------
- * $Id: ForeignCall.h,v 1.2 1998/12/02 13:28:23 simonm Exp $
+ * $Id: ForeignCall.h,v 1.3 1999/02/05 16:02:41 simonm Exp $
+ *
+ * (c) The GHC Team, 1998-1999
  *
  * Prototypes for functions in ForeignCall.c
  *
index 3311550..e53d687 100644 (file)
@@ -1,7 +1,9 @@
 /* -----------------------------------------------------------------------------
- * $Id: GC.c,v 1.26 1999/02/05 15:25:07 simonm Exp $
+ * $Id: GC.c,v 1.27 1999/02/05 16:02:41 simonm Exp $
  *
- * Two-space garbage collector
+ * (c) The GHC Team 1998-1999
+ *
+ * Generational garbage collector
  *
  * ---------------------------------------------------------------------------*/
 
index 7b42b4e..dc7beb8 100644 (file)
@@ -1,5 +1,7 @@
 /* -----------------------------------------------------------------------------
- * $Id: GC.h,v 1.3 1999/01/26 11:12:45 simonm Exp $
+ * $Id: GC.h,v 1.4 1999/02/05 16:02:43 simonm Exp $
+ *
+ * (c) The GHC Team, 1998-1999
  *
  * Prototypes for functions in GC.c
  *
index 7d814ee..2584c68 100644 (file)
@@ -1,5 +1,7 @@
 /* -----------------------------------------------------------------------------
- * $Id: HeapStackCheck.hc,v 1.2 1998/12/02 13:28:26 simonm Exp $
+ * $Id: HeapStackCheck.hc,v 1.3 1999/02/05 16:02:43 simonm Exp $
+ *
+ * (c) The GHC Team, 1998-1999
  *
  * Canned Heap-Check and Stack-Check sequences.
  *
index 99811c7..d40ab4e 100644 (file)
@@ -1,7 +1,7 @@
 /* -----------------------------------------------------------------------------
- * $Id: Itimer.c,v 1.2 1998/12/02 13:28:27 simonm Exp $
+ * $Id: Itimer.c,v 1.3 1999/02/05 16:02:44 simonm Exp $
  *
- * (c) The GHC Team, 1995-1998
+ * (c) The GHC Team, 1995-1999
  *
  * Interval timer for profiling and pre-emptive scheduling.
  *
index e415074..0876e84 100644 (file)
@@ -1,7 +1,7 @@
 /* -----------------------------------------------------------------------------
- * $Id: Itimer.h,v 1.2 1998/12/02 13:28:28 simonm Exp $
+ * $Id: Itimer.h,v 1.3 1999/02/05 16:02:44 simonm Exp $
  *
- * (c) The GHC Team 1998
+ * (c) The GHC Team 1998-1999
  *
  * Interval timer for profiling and pre-emptive scheduling.
  *
index 5e2fd24..96be15f 100644 (file)
@@ -1,5 +1,7 @@
 /* -----------------------------------------------------------------------------
- * $Id: MBlock.c,v 1.8 1999/01/26 10:41:20 sof Exp $
+ * $Id: MBlock.c,v 1.9 1999/02/05 16:02:44 simonm Exp $
+ *
+ * (c) The GHC Team 1998-1999
  *
  * MegaBlock Allocator Interface.  This file contains all the dirty
  * architecture-dependent hackery required to get a chunk of aligned
index 0fb902e..1615f70 100644 (file)
@@ -1,5 +1,7 @@
 /* -----------------------------------------------------------------------------
- * $Id: MBlock.h,v 1.3 1999/01/13 17:25:41 simonm Exp $
+ * $Id: MBlock.h,v 1.4 1999/02/05 16:02:45 simonm Exp $
+ *
+ * (c) The GHC Team, 1998-1999
  *
  * MegaBlock Allocator interface.
  *
index 3a4d0dd..3eaf69a 100644 (file)
@@ -1,5 +1,7 @@
 /* -----------------------------------------------------------------------------
- * $Id: Main.h,v 1.2 1998/12/02 13:28:31 simonm Exp $
+ * $Id: Main.h,v 1.3 1999/02/05 16:02:45 simonm Exp $
+ *
+ * (c) The GHC Team, 1998-1999
  *
  * Prototypes for functions in Main.c
  *
index 0c90613..16fc096 100644 (file)
@@ -1,5 +1,7 @@
 /* -----------------------------------------------------------------------------
- * $Id: PrimOps.hc,v 1.12 1999/02/05 15:25:09 simonm Exp $
+ * $Id: PrimOps.hc,v 1.13 1999/02/05 16:02:45 simonm Exp $
+ *
+ * (c) The GHC Team, 1998-1999
  *
  * Primitive functions / data
  *
index 7d2fe71..c314151 100644 (file)
@@ -1,8 +1,8 @@
 /* -*- mode: hugs-c; -*- */
 /* -----------------------------------------------------------------------------
- * $Id: Printer.c,v 1.5 1999/02/05 14:44:43 simonm Exp $
+ * $Id: Printer.c,v 1.6 1999/02/05 16:02:46 simonm Exp $
  *
- * Copyright (c) 1994-1998.
+ * Copyright (c) 1994-1999.
  *
  * Heap printer
  * 
index e435895..bb92b6b 100644 (file)
@@ -1,5 +1,7 @@
 /* -----------------------------------------------------------------------------
- * $Id: Printer.h,v 1.2 1998/12/02 13:28:34 simonm Exp $
+ * $Id: Printer.h,v 1.3 1999/02/05 16:02:47 simonm Exp $
+ *
+ * (c) The GHC Team, 1998-1999
  *
  * Prototypes for functions in Printer.c
  *
index 2dbb4b3..2634f7a 100644 (file)
@@ -1,7 +1,7 @@
 /* -----------------------------------------------------------------------------
- * $Id: ProfRts.h,v 1.2 1998/12/02 13:28:35 simonm Exp $
+ * $Id: ProfRts.h,v 1.3 1999/02/05 16:02:47 simonm Exp $
  *
- * (c) The GHC Team, 1998
+ * (c) The GHC Team, 1998-1999
  *
  * Support for profiling
  *
index 4524fb0..45747ce 100644 (file)
@@ -1,7 +1,7 @@
 /* -----------------------------------------------------------------------------
- * $Id: Profiling.c,v 1.2 1998/12/02 13:28:35 simonm Exp $
+ * $Id: Profiling.c,v 1.3 1999/02/05 16:02:48 simonm Exp $
  *
- * (c) The GHC Team, 1998
+ * (c) The GHC Team, 1998-1999
  *
  * Support for profiling
  *
index bd50c98..077dc3f 100644 (file)
@@ -1,7 +1,7 @@
 /* -----------------------------------------------------------------------------
- * $Id: Proftimer.c,v 1.2 1998/12/02 13:28:36 simonm Exp $
+ * $Id: Proftimer.c,v 1.3 1999/02/05 16:02:48 simonm Exp $
  *
- * (c) The GHC Team, 1998
+ * (c) The GHC Team, 1998-1999
  *
  * Profiling interval timer
  *
index 41bd45f..a16d12b 100644 (file)
@@ -1,5 +1,9 @@
 /* -*- mode: hugs-c; -*- */
-/* --------------------------------------------------------------------------
+/* -----------------------------------------------------------------------------
+ * $Id: QueueTemplate.h,v 1.3 1999/02/05 16:02:48 simonm Exp $
+ *
+ * (c) The GHC Team, 1998
+ *
  * Template for generating queues of various types
  *
  * #define Queue##ChunkSize, Queue and Type before #including this file
@@ -13,8 +17,8 @@
  * Copyright (c) 1994-1998.
  *
  * $RCSfile: QueueTemplate.h,v $
- * $Revision: 1.2 $
- * $Date: 1998/12/02 13:28:37 $
+ * $Revision: 1.3 $
+ * $Date: 1999/02/05 16:02:48 $
  *
  * ------------------------------------------------------------------------*/
 
index 4cc976d..d4214d1 100644 (file)
@@ -1,5 +1,7 @@
 /* ----------------------------------------------------------------------------
- * $Id: RtsAPI.c,v 1.3 1999/01/27 14:51:21 simonpj Exp $
+ * $Id: RtsAPI.c,v 1.4 1999/02/05 16:02:49 simonm Exp $
+ *
+ * (c) The GHC Team, 1998-1999
  *
  * API for invoking Haskell functions via the RTS
  *
index 60a1f9e..ad2df3a 100644 (file)
@@ -1,5 +1,8 @@
 /* -----------------------------------------------------------------------------
- * $Id: RtsFlags.c,v 1.8 1999/01/27 16:41:16 simonm Exp $
+ * $Id: RtsFlags.c,v 1.9 1999/02/05 16:02:49 simonm Exp $
+ *
+ * (c) The AQUA Project, Glasgow University, 1994-1997
+ * (c) The GHC Team, 1998-1999
  *
  * Functions for parsing the argument list.
  *
index 633f272..12588dc 100644 (file)
@@ -1,5 +1,7 @@
 /* -----------------------------------------------------------------------------
- * $Id: RtsFlags.h,v 1.8 1999/01/27 16:41:16 simonm Exp $
+ * $Id: RtsFlags.h,v 1.9 1999/02/05 16:02:50 simonm Exp $
+ *
+ * (c) The GHC Team, 1998-1999
  *
  * Datatypes that holds the command-line flag settings.
  *
index d079f6e..a0e976e 100644 (file)
@@ -1,5 +1,7 @@
 /* -----------------------------------------------------------------------------
- * $Id: RtsStartup.c,v 1.5 1999/01/26 11:12:47 simonm Exp $
+ * $Id: RtsStartup.c,v 1.6 1999/02/05 16:02:50 simonm Exp $
+ *
+ * (c) The GHC Team, 1998-1999
  *
  * Main function for a standalone Haskell program.
  *
index b9f2ff9..95afe0c 100644 (file)
@@ -1,5 +1,7 @@
 /* -----------------------------------------------------------------------------
- * $Id: RtsUtils.c,v 1.5 1999/01/29 09:30:51 simonm Exp $
+ * $Id: RtsUtils.c,v 1.6 1999/02/05 16:02:51 simonm Exp $
+ *
+ * (c) The GHC Team, 1998-1999
  *
  * General utility functions used in the RTS.
  *
index 72047b0..94693f2 100644 (file)
@@ -1,5 +1,7 @@
 /* -----------------------------------------------------------------------------
- * $Id: RtsUtils.h,v 1.2 1998/12/02 13:28:42 simonm Exp $
+ * $Id: RtsUtils.h,v 1.3 1999/02/05 16:02:51 simonm Exp $
+ *
+ * (c) The GHC Team, 1998-1999
  *
  * General utility functions used in the RTS.
  *
index ed8cdc3..1260f8c 100644 (file)
@@ -1,5 +1,7 @@
 /* -----------------------------------------------------------------------------
- * $Id: Sanity.c,v 1.8 1999/02/02 12:37:14 simonm Exp $
+ * $Id: Sanity.c,v 1.9 1999/02/05 16:02:52 simonm Exp $
+ *
+ * (c) The GHC Team, 1998-1999
  *
  * Sanity checking code for the heap and stack.
  *
@@ -310,7 +312,6 @@ checkClosure( StgClosure* p )
        }
 
     case ARR_WORDS:
-    case MUT_ARR_WORDS:
            return arr_words_sizeW(stgCast(StgArrWords*,p));
 
     case MUT_ARR_PTRS:
index 581e029..6ab9c84 100644 (file)
@@ -1,5 +1,7 @@
 /* -----------------------------------------------------------------------------
- * $Id: Sanity.h,v 1.3 1999/01/13 17:25:44 simonm Exp $
+ * $Id: Sanity.h,v 1.4 1999/02/05 16:02:52 simonm Exp $
+ *
+ * (c) The GHC Team, 1998-1999
  *
  * Prototypes for functions in Sanity.c
  *
index 48f9e39..0b273c4 100644 (file)
@@ -1,5 +1,7 @@
 /* -----------------------------------------------------------------------------
- * $Id: Schedule.c,v 1.8 1999/02/03 16:32:47 simonm Exp $
+ * $Id: Schedule.c,v 1.9 1999/02/05 16:02:53 simonm Exp $
+ *
+ * (c) The GHC Team, 1998-1999
  *
  * Scheduler
  *
index 4e41974..e55d038 100644 (file)
@@ -1,7 +1,7 @@
 /* -----------------------------------------------------------------------------
- * $Id: Schedule.h,v 1.2 1998/12/02 13:28:46 simonm Exp $
+ * $Id: Schedule.h,v 1.3 1999/02/05 16:02:53 simonm Exp $
  *
- * (c) The GHC Team 1998
+ * (c) The GHC Team 1998-1999
  *
  * Prototypes for functions in Schedule.c 
  * (RTS internal scheduler interface)
index 7062102..6d9ea44 100644 (file)
@@ -1,5 +1,7 @@
 /* -----------------------------------------------------------------------------
- * $Id: Signals.c,v 1.3 1999/01/26 11:12:49 simonm Exp $
+ * $Id: Signals.c,v 1.4 1999/02/05 16:02:54 simonm Exp $
+ *
+ * (c) The GHC Team, 1998-1999
  *
  * Signal processing / handling.
  *
index cee39ee..0d8a222 100644 (file)
@@ -1,5 +1,7 @@
 /* -----------------------------------------------------------------------------
- * $Id: Signals.h,v 1.2 1998/12/02 13:28:47 simonm Exp $
+ * $Id: Signals.h,v 1.3 1999/02/05 16:02:55 simonm Exp $
+ *
+ * (c) The GHC Team, 1998-1999
  *
  * Signal processing / handling.
  *
index b4021b6..9f1414e 100644 (file)
@@ -1,7 +1,7 @@
 /* -----------------------------------------------------------------------------
- * $Id: Stable.c,v 1.1 1999/01/27 10:11:27 simonm Exp $
+ * $Id: Stable.c,v 1.2 1999/02/05 16:02:55 simonm Exp $
  *
- * (c) The GHC Team 1998-1999
+ * (c) The GHC Team, 1998-1999
  *
  * Stable names and stable pointers.
  *
index 4105605..f245216 100644 (file)
@@ -1,5 +1,7 @@
 /* -----------------------------------------------------------------------------
- * $Id: StablePriv.h,v 1.1 1999/01/26 14:18:38 simonm Exp $
+ * $Id: StablePriv.h,v 1.2 1999/02/05 16:02:56 simonm Exp $
+ *
+ * (c) The GHC Team, 1998-1999
  *
  * Internal RTS API for stable names and stable ptrs.
  *
index 061bbdd..9dd0612 100644 (file)
@@ -1,5 +1,7 @@
 /* -----------------------------------------------------------------------------
- * $Id: Stats.c,v 1.5 1999/02/03 16:42:18 simonm Exp $
+ * $Id: Stats.c,v 1.6 1999/02/05 16:02:56 simonm Exp $
+ *
+ * (c) The GHC Team, 1998-1999
  *
  * Statistics and timing-related functions.
  *
index 2b9c0a5..9908e1c 100644 (file)
@@ -1,5 +1,7 @@
 /* -----------------------------------------------------------------------------
- * $Id: Stats.h,v 1.3 1999/01/13 17:25:46 simonm Exp $
+ * $Id: Stats.h,v 1.4 1999/02/05 16:02:57 simonm Exp $
+ *
+ * (c) The GHC Team, 1998-1999
  *
  * Statistics and timing-related functions.
  *
index 775f089..09127d8 100644 (file)
@@ -1,5 +1,7 @@
 /* -----------------------------------------------------------------------------
- * $Id: StgCRun.c,v 1.2 1998/12/02 13:28:50 simonm Exp $
+ * $Id: StgCRun.c,v 1.3 1999/02/05 16:02:57 simonm Exp $
+ *
+ * (c) The GHC Team, 1998-1999
  *
  * STG-to-C glue.  Some architectures have this code written in
  * straight assembler (see StgRun.S), some in C.
index a504016..7c085d8 100644 (file)
@@ -1,5 +1,7 @@
 /* -----------------------------------------------------------------------------
- * $Id: StgLongLong.c,v 1.2 1998/12/02 13:28:51 simonm Exp $
+ * $Id: StgLongLong.c,v 1.3 1999/02/05 16:02:58 simonm Exp $
+ *
+ * (c) The GHC Team, 1998-1999
  *
  * Primitive operations over (64-bit) long longs
  * (only used on 32-bit platforms.)
index e17a02b..fcf26d9 100644 (file)
@@ -1,5 +1,7 @@
 /* -----------------------------------------------------------------------------
- * $Id: StgMiscClosures.hc,v 1.12 1999/02/05 15:25:09 simonm Exp $
+ * $Id: StgMiscClosures.hc,v 1.13 1999/02/05 16:02:58 simonm Exp $
+ *
+ * (c) The GHC Team, 1998-1999
  *
  * Entry code for various built-in closure types.
  *
index 111ccce..8c3bef6 100644 (file)
@@ -1,5 +1,7 @@
 /* -----------------------------------------------------------------------------
- * $Id: StgPrimFloat.c,v 1.2 1998/12/02 13:28:53 simonm Exp $
+ * $Id: StgPrimFloat.c,v 1.3 1999/02/05 16:02:59 simonm Exp $
+ *
+ * (c) The GHC Team, 1998-1999
  *
  * Miscellaneous support for floating-point primitives
  *
index e1e7031..b617581 100644 (file)
@@ -1,5 +1,7 @@
 /* -----------------------------------------------------------------------------
- * $Id: StgRun.h,v 1.2 1998/12/02 13:28:54 simonm Exp $
+ * $Id: StgRun.h,v 1.3 1999/02/05 16:02:59 simonm Exp $
+ *
+ * (c) The GHC Team, 1998-1999
  *
  * Tiny assembler 'layer' between the C and STG worlds.
  * 
index 1fd72d7..0bd3b52 100644 (file)
@@ -1,5 +1,7 @@
 /* -----------------------------------------------------------------------------
- * $Id: StgStartup.h,v 1.2 1998/12/02 13:28:54 simonm Exp $
+ * $Id: StgStartup.h,v 1.3 1999/02/05 16:03:00 simonm Exp $
+ *
+ * (c) The GHC Team, 1998-1999
  *
  * Code for starting, stopping and restarting threads.
  *
index b92fb09..6a87b1d 100644 (file)
@@ -1,5 +1,7 @@
 /* -----------------------------------------------------------------------------
- * $Id: StgStartup.hc,v 1.2 1998/12/02 13:28:55 simonm Exp $
+ * $Id: StgStartup.hc,v 1.3 1999/02/05 16:03:00 simonm Exp $
+ *
+ * (c) The GHC Team, 1998-1999
  *
  * Code for starting, stopping and restarting threads.
  *
index 79793a1..b7cac13 100644 (file)
@@ -1,5 +1,7 @@
 /* -----------------------------------------------------------------------------
- * $Id: StgStdThunks.hc,v 1.2 1998/12/02 13:28:56 simonm Exp $
+ * $Id: StgStdThunks.hc,v 1.3 1999/02/05 16:03:00 simonm Exp $
+ *
+ * (c) The GHC Team, 1998-1999
  *
  * Canned "Standard Form" Thunks
  *
index ce745f6..e94094b 100644 (file)
@@ -1,5 +1,7 @@
 /* -----------------------------------------------------------------------------
- * $Id: Storage.c,v 1.11 1999/02/05 14:48:01 simonm Exp $
+ * $Id: Storage.c,v 1.12 1999/02/05 16:03:01 simonm Exp $
+ *
+ * (c) The GHC Team, 1998-1999
  *
  * Storage manager front end
  *
index b4a22b9..fc93e01 100644 (file)
@@ -1,5 +1,7 @@
 /* -----------------------------------------------------------------------------
- * $Id: Storage.h,v 1.6 1999/02/02 14:21:34 simonm Exp $
+ * $Id: Storage.h,v 1.7 1999/02/05 16:03:01 simonm Exp $
+ *
+ * (c) The GHC Team, 1998-1999
  *
  * External Storage Manger Interface
  *
index f36e1bf..4326550 100644 (file)
@@ -1,5 +1,7 @@
 /* -----------------------------------------------------------------------------
- * $Id: StoragePriv.h,v 1.7 1999/02/02 14:21:34 simonm Exp $
+ * $Id: StoragePriv.h,v 1.8 1999/02/05 16:03:02 simonm Exp $
+ *
+ * (c) The GHC Team, 1998-1999
  *
  * Internal Storage Manger Interface
  *
index 787b066..9e070fe 100644 (file)
@@ -1,7 +1,8 @@
 /* -----------------------------------------------------------------------------
- * $Id: Ticky.c,v 1.2 1999/02/02 14:21:34 simonm Exp $
+ * $Id: Ticky.c,v 1.3 1999/02/05 16:03:02 simonm Exp $
  *
- * (c) The GHC Team, Glasgow University, 1992-1998
+ * (c) The AQUA project, Glasgow University, 1992-1997
+ * (c) The GHC Team, 1998-1999
  *
  * Ticky-ticky profiling
  *-------------------------------------------------------------------------- */
index 8fc0fae..d3b5ba6 100644 (file)
@@ -1,5 +1,7 @@
 /* -----------------------------------------------------------------------------
- * $Id: Updates.hc,v 1.8 1999/01/27 14:51:23 simonpj Exp $
+ * $Id: Updates.hc,v 1.9 1999/02/05 16:03:03 simonm Exp $
+ *
+ * (c) The GHC Team, 1998-1999
  *
  * Code to perform updates.
  *
index 8fe2575..59dc192 100644 (file)
@@ -1,5 +1,7 @@
 /* -----------------------------------------------------------------------------
- * $Id: Weak.c,v 1.6 1999/02/02 14:17:45 simonm Exp $
+ * $Id: Weak.c,v 1.7 1999/02/05 16:03:03 simonm Exp $
+ *
+ * (c) The GHC Team, 1998-1999
  *
  * Weak pointers / finalisers
  *
index 25c928f..75c276d 100644 (file)
@@ -1,5 +1,7 @@
 /* -----------------------------------------------------------------------------
- * $Id: Weak.h,v 1.2 1998/12/02 13:29:01 simonm Exp $
+ * $Id: Weak.h,v 1.3 1999/02/05 16:03:04 simonm Exp $
+ *
+ * (c) The GHC Team, 1998-1999
  *
  * Weak pointers / finalisers
  *