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
66710e22
Commit
66710e22
authored
23 years ago
by
pw
Browse files
Options
Downloads
Patches
Plain Diff
Increase FD_SETSIZE for FreeBSD from 256 to 1024. Valid since FreeBSD 3.x.
parent
8eab78a5
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
code/unix.lisp
+4
-2
4 additions, 2 deletions
code/unix.lisp
with
4 additions
and
2 deletions
code/unix.lisp
+
4
−
2
View file @
66710e22
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
;;; 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/unix.lisp,v 1.7
2
2001/0
3/04 20:12:46
pw Exp $"
)
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/unix.lisp,v 1.7
3
2001/0
9/27 11:28:59
pw Exp $"
)
;;;
;;;
;;; **********************************************************************
;;; **********************************************************************
;;;
;;;
...
@@ -204,7 +204,9 @@
...
@@ -204,7 +204,9 @@
#+
alpha
unsigned-int
#+
svr4
unsigned-long
)
#+
alpha
unsigned-int
#+
svr4
unsigned-long
)
(
def-alien-type
nlink-t
#-
svr4
unsigned-short
#+
svr4
unsigned-long
)
(
def-alien-type
nlink-t
#-
svr4
unsigned-short
#+
svr4
unsigned-long
)
(
defconstant
FD-SETSIZE
#-
(
or
hpux
alpha
linux
)
256
#+
hpux
2048
#+
alpha
4096
#+
linux
1024
)
(
defconstant
FD-SETSIZE
#-
(
or
hpux
alpha
linux
FreeBSD
)
256
#+
hpux
2048
#+
alpha
4096
#+
(
or
linux
FreeBSD
)
1024
)
;; not checked for linux...
;; not checked for linux...
(
def-alien-type
nil
(
def-alien-type
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