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
bbc6cdef
Commit
bbc6cdef
authored
26 years ago
by
pw
Browse files
Options
Downloads
Patches
Plain Diff
For solaris (SVR4) SIGCHLD and SIGIO had wrong definition.
parent
85b84fe7
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
+5
-5
5 additions, 5 deletions
code/signal.lisp
with
5 additions
and
5 deletions
code/signal.lisp
+
5
−
5
View file @
bbc6cdef
...
@@ -5,11 +5,11 @@
...
@@ -5,11 +5,11 @@
;;; Carnegie Mellon University, and has been placed in the public domain.
;;; Carnegie Mellon University, and has been placed in the public domain.
;;;
;;;
(
ext:file-comment
(
ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/signal.lisp,v 1.2
6
1999/03/24 1
8:07:12
pw Exp $"
)
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/signal.lisp,v 1.2
7
1999/03/24 1
9:42:00
pw Exp $"
)
;;;
;;;
;;; **********************************************************************
;;; **********************************************************************
;;;
;;;
;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/signal.lisp,v 1.2
6
1999/03/24 1
8:07:12
pw Exp $
;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/signal.lisp,v 1.2
7
1999/03/24 1
9:42:00
pw Exp $
;;;
;;;
;;; Code for handling UNIX signals.
;;; Code for handling UNIX signals.
;;;
;;;
...
@@ -122,13 +122,13 @@
...
@@ -122,13 +122,13 @@
#+
linux
20
"Stop signal generated from keyboard"
)
#+
linux
20
"Stop signal generated from keyboard"
)
(
def-unix-signal
:SIGCONT
#-
(
or
hpux
svr4
linux
)
19
#+
hpux
26
#+
svr4
25
(
def-unix-signal
:SIGCONT
#-
(
or
hpux
svr4
linux
)
19
#+
hpux
26
#+
svr4
25
#+
linux
18
"Continue after stop"
)
#+
linux
18
"Continue after stop"
)
(
def-unix-signal
:SIGCHLD
#-
(
or
linux
hpux
)
20
(
def-unix-signal
:SIGCHLD
#-
(
or
linux
hpux
svr4
)
20
#+
hpux
18
#+
linux
17
"Child status has changed"
)
#+
(
or
hpux
svr4
)
18
#+
linux
17
"Child status has changed"
)
(
def-unix-signal
:SIGTTIN
#-
(
or
hpux
svr4
)
21
#+
hpux
27
#+
svr4
26
(
def-unix-signal
:SIGTTIN
#-
(
or
hpux
svr4
)
21
#+
hpux
27
#+
svr4
26
"Background read attempted from control terminal"
)
"Background read attempted from control terminal"
)
(
def-unix-signal
:SIGTTOU
#-
(
or
hpux
svr4
)
22
#+
hpux
28
#+
svr4
27
(
def-unix-signal
:SIGTTOU
#-
(
or
hpux
svr4
)
22
#+
hpux
28
#+
svr4
27
"Background write attempted to control terminal"
)
"Background write attempted to control terminal"
)
(
def-unix-signal
:SIGIO
#-
(
or
hpux
irix
linux
)
23
#+
(
or
hpux
irix
)
22
(
def-unix-signal
:SIGIO
#-
(
or
svr4
hpux
irix
linux
)
23
#+
(
or
svr4
hpux
irix
)
22
#+
linux
29
#+
linux
29
"I/O is possible on a descriptor"
)
"I/O is possible on a descriptor"
)
#-
hpux
#-
hpux
...
...
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