Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
cmucl
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Carl Shapiro
cmucl
Commits
8cf945e3
Commit
8cf945e3
authored
30 years ago
by
ram
Browse files
Options
Downloads
Patches
Plain Diff
Solaris patches.
parent
3fb42466
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
lisp/lisp.c
+8
-3
8 additions, 3 deletions
lisp/lisp.c
lisp/monitor.c
+2
-2
2 additions, 2 deletions
lisp/monitor.c
with
10 additions
and
5 deletions
lisp/lisp.c
+
8
−
3
View file @
8cf945e3
/*
/*
* main() entry point for a stand alone lisp image.
* main() entry point for a stand alone lisp image.
*
*
* $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/lisp.c,v 1.
7
1994/
07/05 16:10:16 hallgren
Exp $
* $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/lisp.c,v 1.
8
1994/
10/24 20:06:27 ram
Exp $
*
*
*/
*/
...
@@ -20,11 +20,11 @@
...
@@ -20,11 +20,11 @@
#include
"vars.h"
#include
"vars.h"
#include
"globals.h"
#include
"globals.h"
#include
"os.h"
#include
"os.h"
#include
"interrupt.h"
#include
"arch.h"
#include
"arch.h"
#include
"gc.h"
#include
"gc.h"
#include
"monitor.h"
#include
"monitor.h"
#include
"validate.h"
#include
"validate.h"
#include
"interrupt.h"
#include
"core.h"
#include
"core.h"
#include
"save.h"
#include
"save.h"
#include
"lispregs.h"
#include
"lispregs.h"
...
@@ -37,8 +37,10 @@
...
@@ -37,8 +37,10 @@
/* SIGINT handler that invokes the monitor. */
/* SIGINT handler that invokes the monitor. */
static
void
sigint_handler
(
int
signal
,
int
code
,
struct
sigcontext
*
context
)
static
void
sigint_handler
(
HANDLER_ARGS
)
{
{
SAVE_CONTEXT
();
printf
(
"
\n
SIGINT hit at 0x%08X
\n
"
,
SC_PC
(
context
));
printf
(
"
\n
SIGINT hit at 0x%08X
\n
"
,
SC_PC
(
context
));
ldb_monitor
();
ldb_monitor
();
}
}
...
@@ -85,6 +87,9 @@ void main(int argc, char *argv[], char *envp[])
...
@@ -85,6 +87,9 @@ void main(int argc, char *argv[], char *envp[])
#ifdef MACH
#ifdef MACH
mach_init
();
mach_init
();
#endif
#endif
#ifdef SVR4
tzset
();
#endif
set_lossage_handler
(
ldb_monitor
);
set_lossage_handler
(
ldb_monitor
);
...
...
This diff is collapsed.
Click to expand it.
lisp/monitor.c
+
2
−
2
View file @
8cf945e3
/* $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/monitor.c,v 1.
4
1994/
03/27 15:21:16 hallgren
Exp $ */
/* $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/monitor.c,v 1.
5
1994/
10/24 20:06:50 ram
Exp $ */
#include
<stdio.h>
#include
<stdio.h>
#include
<sys/types.h>
#include
<sys/types.h>
...
@@ -13,9 +13,9 @@
...
@@ -13,9 +13,9 @@
#include
"globals.h"
#include
"globals.h"
#include
"vars.h"
#include
"vars.h"
#include
"parse.h"
#include
"parse.h"
#include
"os.h"
#include
"interrupt.h"
#include
"interrupt.h"
#include
"lispregs.h"
#include
"lispregs.h"
#include
"os.h"
#include
"monitor.h"
#include
"monitor.h"
#include
"print.h"
#include
"print.h"
#include
"arch.h"
#include
"arch.h"
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment