/* -*-C-*-
-$Id: bintopsb.c,v 9.66 1997/01/02 05:23:15 cph Exp $
+$Id: bintopsb.c,v 9.67 1997/06/26 06:57:56 cph Exp $
Copyright (c) 1987-97 Massachusetts Institute of Technology
/* Fall Through */
case TC_CHARACTER:
- Process_Character:
Mem_Base[*Area] = (MAKE_OBJECT (Code, *Obj));
*Obj += 1;
**FObj = This;
break;
default:
- Bad_Type:
fprintf (stderr, "%s: Unknown Type Code 0x%x found.\n",
program_name, (OBJECT_TYPE (This)));
quit (1);
/* -*-C-*-
-$Id: hooks.c,v 9.56 1997/01/02 05:21:37 cph Exp $
+$Id: hooks.c,v 9.57 1997/06/26 06:59:54 cph Exp $
Copyright (c) 1988-97 Massachusetts Institute of Technology
Pushed ();
PRIMITIVE_ABORT (PRIM_APPLY);
/*NOTREACHED*/
+ PRIMITIVE_RETURN (UNSPECIFIC);
}
else
{
Store_Expression (FAST_MEMORY_REF (thunk, THUNK_PROCEDURE));
PRIMITIVE_ABORT (PRIM_DO_EXPRESSION);
/*NOTREACHED*/
- return (0);
+ PRIMITIVE_RETURN (UNSPECIFIC);
}
}
}
/* -*-C-*-
-$Id: lookup.c,v 9.55 1996/10/02 19:01:34 cph Exp $
+$Id: lookup.c,v 9.56 1997/06/26 06:57:41 cph Exp $
Copyright (c) 1988-96 Massachusetts Institute of Technology
store_extension = SHARP_F;
trap_kind = TRAP_COMPILER_CACHED;
+#if 0
compiler_cache_retry:
+#endif
setup_lock (set_serializer, cell);
compiler_cache_consistency_check ();
/* -*-C-*-
-$Id: ntenv.c,v 1.15 1997/01/01 22:57:20 cph Exp $
+$Id: ntenv.c,v 1.16 1997/06/26 06:59:40 cph Exp $
Copyright (c) 1992-97 Massachusetts Institute of Technology
}
void
-DEFUN (OS_set_working_dir_pathname, (name), char * name)
+DEFUN (OS_set_working_dir_pathname, (name), CONST char * name)
{
size_t name_size = (strlen (name));
- char * filename = name;
+ CONST char * filename = name;
STD_BOOL_API_CALL (SetCurrentDirectory, (filename));
/* -*-C-*-
-$Id: ntfs.c,v 1.14 1997/01/05 23:38:50 cph Exp $
+$Id: ntfs.c,v 1.15 1997/06/26 06:59:31 cph Exp $
Copyright (c) 1992-97 Massachusetts Institute of Technology
}
enum file_existence
-DEFUN (OS_file_existence_test, (name), char * name)
+DEFUN (OS_file_existence_test, (name), CONST char * name)
{
struct stat s;
char filename[128];
}
int
-DEFUN (OS_file_directory_p, (name), char * name)
+DEFUN (OS_file_directory_p, (name), CONST char * name)
{
struct stat s;
char filename[128];
/* -*-C-*-
-$Id: ntgui.c,v 1.19 1997/03/18 04:06:32 cph Exp $
+$Id: ntgui.c,v 1.20 1997/06/26 06:59:20 cph Exp $
-Copyright (c) 1993-96 Massachusetts Institute of Technology
+Copyright (c) 1993-97 Massachusetts Institute of Technology
This material was developed by the Scheme project at the Massachusetts
Institute of Technology, Department of Electrical Engineering and
if (!InitInstance(ghInstance, nCmdShow))
return FALSE;
- scheme_main (argc, argv);
+ scheme_main (argc, ((const char **) argv));
return (0);
}
#endif
/* -*-C-*-
-$Id: ntsys.c,v 1.7 1997/01/02 05:21:39 cph Exp $
+$Id: ntsys.c,v 1.8 1997/06/26 06:59:03 cph Exp $
Copyright (c) 1992-97 Massachusetts Institute of Technology
}
BOOL
-nt_pathname_as_filename (char * name, char * buffer)
+nt_pathname_as_filename (const char * name, char * buffer)
{ /* Returns whether directory encountered is top level */
int end_index = ((strlen (name)) - 1);
/* -*-C-*-
-$Id: ntsys.h,v 1.6 1996/04/09 20:16:08 adams Exp $
+$Id: ntsys.h,v 1.7 1997/06/26 06:58:54 cph Exp $
-Copyright (c) 1992-1996 Massachusetts Institute of Technology
+Copyright (c) 1992-97 Massachusetts Institute of Technology
This material was developed by the Scheme project at the Massachusetts
Institute of Technology, Department of Electrical Engineering and
extern BOOL win32_under_win32s_p ();
extern int nt_console_write (void * vbuffer, size_t nsize);
-extern BOOL nt_pathname_as_filename (char * name, char * buffer);
+extern BOOL nt_pathname_as_filename (const char * name, char * buffer);
#endif /* SCM_NTSYS_H */
/* -*-C-*-
-$Id: utils.c,v 9.71 1997/01/02 05:21:41 cph Exp $
+$Id: utils.c,v 9.72 1997/06/26 06:58:07 cph Exp $
Copyright (c) 1987-97 Massachusetts Institute of Technology
Global_Interrupt_Hook ();
interrupt_handler = (VECTOR_REF (interrupt_handlers, interrupt_number));
+#if 0
/* This label may be used in Global_Interrupt_Hook: */
passed_checks:
+#endif
Stop_History ();
preserve_interrupt_mask ();
Will_Push (STACK_ENV_EXTRA_SLOTS + 3);