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
4d251300
Commit
4d251300
authored
34 years ago
by
wlott
Browse files
Options
Downloads
Patches
Plain Diff
Added other signals, like sigsegv and sigbus.
parent
d0ea1fca
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
code/signal.lisp
+44
-3
44 additions, 3 deletions
code/signal.lisp
with
44 additions
and
3 deletions
code/signal.lisp
+
44
−
3
View file @
4d251300
...
...
@@ -7,7 +7,7 @@
;;; Scott Fahlman (FAHLMAN@CMUC).
;;; **********************************************************************
;;;
;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/signal.lisp,v 1.
1
1990/06/0
4
0
5:34:33
wlott Exp $
;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/signal.lisp,v 1.
2
1990/06/0
6
0
3:59:28
wlott Exp $
;;;
;;; Code for handling UNIX signals.
;;;
...
...
@@ -24,7 +24,48 @@
(
signal
int
)
(
handler
unsigned-long
))
(
defmacro
define-signal-handler
(
name
what
&optional
(
function
'error
))
`
(
defun
,
name
(
signal
code
scp
)
(
declare
(
ignore
signal
code
))
(
alien-bind
((
sc
(
make-alien
'mach:sigcontext
#.
(
c-sizeof
'mach:sigcontext
)
scp
)
mach:sigcontext
t
))
(
,
function
,
(
concatenate
'simple-string
what
" at #x~x."
)
(
alien-access
(
mach:sigcontext-pc
(
alien-value
sc
)))))))
(
define-signal-handler
sigint-handler
"Interrupted"
break
)
(
define-signal-handler
sigill-handler
"Illegal Instruction"
)
(
define-signal-handler
sigiot-handler
"SIGIOT"
)
(
define-signal-handler
sigemt-handler
"SIGEMT"
)
(
define-signal-handler
sigfpe-handler
"SIGFPE"
)
(
define-signal-handler
sigbus-handler
"Bus Error"
)
(
define-signal-handler
sigsegv-handler
"Segmentation Violation"
)
(
define-signal-handler
sigsys-handler
"Bad Argument to a System Call"
)
(
define-signal-handler
sigpipe-handler
"SIGPIPE"
)
(
define-signal-handler
sigalrm-handler
"SIGALRM"
)
(
defun
sigquit-handler
(
signal
code
scp
)
(
declare
(
ignore
signal
code
scp
))
(
throw
'lisp::top-level-catcher
nil
))
(
defun
signal-init
()
(
install-handler
#.
(
mach:unix-signal-number
:sigtrap
)
(
di::get-lisp-obj-address
#'
internal-error
))
(
macrolet
((
frob
(
signal
handler
)
`
(
install-handler
,
(
mach:unix-signal-number
signal
)
(
di::get-lisp-obj-address
,
handler
))))
#+
nil
(
frob
:sigint
#'
sigint-handler
)
(
frob
:sigill
#'
sigill-handler
)
(
frob
:sigtrap
#'
internal-error
)
(
frob
:sigiot
#'
sigiot-handler
)
(
frob
:sigemt
#'
sigemt-handler
)
#+
nil
(
frob
:sigfpe
#'
sigfpe-handler
)
(
frob
:sigbus
#'
sigbus-handler
)
(
frob
:sigsegv
#'
sigsegv-handler
)
(
frob
:sigsys
#'
sigsys-handler
)
(
frob
:sigpipe
#'
sigpipe-handler
)
(
frob
:sigalrm
#'
sigalrm-handler
))
nil
)
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