Skip to content
Snippets Groups Projects
Commit e4ee9683 authored by sven.panne@aedion.de's avatar sven.panne@aedion.de
Browse files

[project @ 1999-08-26 08:23:44 by panne]

Fixed typo UNUSED => STG_UNUSED
parent 2f8df09e
No related merge requests found
/* -----------------------------------------------------------------------------
*
* $Id: LLComms.c,v 1.2 1998/12/02 13:29:06 simonm Exp $
* $Id: LLComms.c,v 1.3 1999/08/26 08:23:44 panne Exp $
*
* GUM Low-Level Inter-Task Communication
*
......@@ -65,8 +65,8 @@ GetOpName(nat op)
*/
static void
trace_SendOp(OPCODE op, GLOBAL_TASK_ID dest UNUSED,
unsigned int data1 UNUSED, unsigned int data2 UNUSED)
trace_SendOp(OPCODE op, GLOBAL_TASK_ID dest STG_UNUSED,
unsigned int data1 STG_UNUSED, unsigned int data2 STG_UNUSED)
{
char *OpName;
......
/* -----------------------------------------------------------------------------
* $Id: Trace.c,v 1.3 1999/01/25 12:01:21 simonm Exp $
* $Id: Trace.c,v 1.4 1999/08/26 08:24:16 panne Exp $
*
* User-overridable RTS hooks.
*
......@@ -8,7 +8,7 @@
#include "Rts.h"
void
PreTraceHook (long fd UNUSED)
PreTraceHook (long fd STG_UNUSED)
{
/* Default is not to print anything, however this might be useful:
*
......@@ -18,7 +18,7 @@ PreTraceHook (long fd UNUSED)
}
void
PostTraceHook (long fd UNUSED)
PostTraceHook (long fd STG_UNUSED)
{
/* Default is not to print anything, however this might be useful:
*
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment