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
610d6226
Commit
610d6226
authored
34 years ago
by
wlott
Browse files
Options
Downloads
Patches
Plain Diff
Initial revision
parent
ec8ec6f1
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/vm.lisp
+79
-0
79 additions, 0 deletions
code/vm.lisp
with
79 additions
and
0 deletions
code/vm.lisp
0 → 100644
+
79
−
0
View file @
610d6226
;;; -*- Log: code.log; Package: MACH -*-
;;;
;;; **********************************************************************
;;; This code was written as part of the Spice Lisp project at
;;; Carnegie-Mellon University, and has been placed in the public domain.
;;; If you want to use this code or any part of Spice Lisp, please contact
;;; Scott Fahlman (FAHLMAN@CMUC).
;;; **********************************************************************
;;;
;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/vm.lisp,v 1.1 1990/10/13 16:01:42 wlott Exp $
;;;
;;; This file contains stubs for interfacing MACH's vm primitives.
;;;
(
in-package
"MACH"
)
(
export
'
(
vm_allocate
vm_copy
vm_deallocate
vm_statistics
))
(
def-c-pointer
*sap
system-area-pointer
)
(
def-c-routine
(
"vm_allocate"
vm_allocate
)
(
int
)
(
task
port
)
(
address
*sap
:in-out
)
(
size
unsigned-long
)
(
anywhere
boolean
))
(
def-c-routine
(
"vm_copy"
vm_copy
)
(
int
)
(
task
port
)
(
source
system-area-pointer
)
(
count
unsigned-long
)
(
dest
system-area-pointer
))
(
def-c-routine
(
"vm_deallocate"
vm_deallocate
)
(
int
)
(
task
port
)
(
address
system-area-pointer
)
(
size
unsigned-long
))
;;;; vm_statistics
(
def-c-record
vm_statistics
(
pagesize
long
)
(
free_count
long
)
(
active_count
long
)
(
inactive_count
long
)
(
wire_count
long
)
(
zero_fill_count
long
)
(
reactivations
long
)
(
pageins
long
)
(
pageouts
long
)
(
faults
long
)
(
cow_faults
long
)
(
lookups
long
)
(
hits
long
))
(
def-c-routine
(
"vm_statistics"
%vm_statistics
)
(
int
)
(
task
port
)
(
vm_stats
system-area-pointer
))
(
defun
vm_statistics
(
task
)
(
with-stack-alien
(
vm_stats
vm_statistics
(
c-sizeof
'vm_statistics
))
(
values
(
%vm_statistics
task
(
alien-sap
(
alien-value
vm_stats
)))
(
alien-access
(
vm_statistics-pagesize
(
alien-value
vm_stats
)))
(
alien-access
(
vm_statistics-free_count
(
alien-value
vm_stats
)))
(
alien-access
(
vm_statistics-active_count
(
alien-value
vm_stats
)))
(
alien-access
(
vm_statistics-inactive_count
(
alien-value
vm_stats
)))
(
alien-access
(
vm_statistics-wire_count
(
alien-value
vm_stats
)))
(
alien-access
(
vm_statistics-zero_fill_count
(
alien-value
vm_stats
)))
(
alien-access
(
vm_statistics-reactivations
(
alien-value
vm_stats
)))
(
alien-access
(
vm_statistics-pageins
(
alien-value
vm_stats
)))
(
alien-access
(
vm_statistics-pageouts
(
alien-value
vm_stats
)))
(
alien-access
(
vm_statistics-faults
(
alien-value
vm_stats
)))
(
alien-access
(
vm_statistics-cow_faults
(
alien-value
vm_stats
)))
(
alien-access
(
vm_statistics-lookups
(
alien-value
vm_stats
)))
(
alien-access
(
vm_statistics-hits
(
alien-value
vm_stats
))))))
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