Skip to content
Snippets Groups Projects
Commit 5b7c10a8 authored by wlott's avatar wlott
Browse files

Added two-arg-gcd and two-arg-lcm to the kernel package.

Added allocate-system-memory and deallocate-system-memory to the system
package.
parent c8551885
No related branches found
No related tags found
No related merge requests found
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
;;; Scott Fahlman (FAHLMAN@CMUC). ;;; Scott Fahlman (FAHLMAN@CMUC).
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/exports.lisp,v 1.23 1990/05/16 01:08:16 wlott Exp $ ;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/exports.lisp,v 1.24 1990/05/18 01:09:06 wlott Exp $
;;; ;;;
;;; All the stuff necessary to export various symbols from various packages. ;;; All the stuff necessary to export various symbols from various packages.
;;; ;;;
...@@ -299,8 +299,8 @@ ...@@ -299,8 +299,8 @@
structure-type-p system-area-clear system-area-copy truth structure-type-p system-area-clear system-area-copy truth
type-expand type-init two-arg-* two-arg-+ two-arg-- two-arg-/ type-expand type-init two-arg-* two-arg-+ two-arg-- two-arg-/
two-arg-/= two-arg-< two-arg-<= two-arg-= two-arg-> two-arg->= two-arg-/= two-arg-< two-arg-<= two-arg-= two-arg-> two-arg->=
two-arg-and two-arg-ior two-arg-xor type-difference two-arg-and two-arg-gcd two-arg-ior two-arg-lcm two-arg-xor
type-intersect type-intersection type-specifier type-difference type-intersect type-intersection type-specifier
type-specifier-symbols type-union type/= type= types-intersect type-specifier-symbols type-union type/= type= types-intersect
unboxed-array union-type union-type-p union-type-types unboxed-array union-type union-type-p union-type-types
unknown-type unknown-type-p unknown-type-specifier unknown-type unknown-type-p unknown-type-specifier
...@@ -396,30 +396,32 @@ ...@@ -396,30 +396,32 @@
*xwindow-table* add-fd-handler add-port-death-handler *xwindow-table* add-fd-handler add-port-death-handler
add-port-object add-xwindow-object alien alien-access add-port-object add-xwindow-object alien alien-access
alien-address alien-assign alien-bind alien-index alien-indirect alien-address alien-assign alien-bind alien-index alien-indirect
alien-sap alien-size alien-type alien-value beep bits boolean alien-sap alien-size alien-type alien-value
bytes c-procedure check<= check= compiler-version copy-alien allocate-system-memory beep bits boolean bytes c-procedure
ct-a-val ct-a-val-alien ct-a-val-offset ct-a-val-p ct-a-val-sap check<= check= compiler-version copy-alien ct-a-val
ct-a-val-size ct-a-val-type defalien default-interrupt ct-a-val-alien ct-a-val-offset ct-a-val-p ct-a-val-sap
defenumeration define-alien-stack defoperator defrecord ct-a-val-size ct-a-val-type deallocate-system-memory defalien
deport-boolean deport-integer dispose-alien double-float-radix default-interrupt defenumeration define-alien-stack defoperator
enable-interrupt enumeration fd-stream fd-stream-fd fd-stream-p defrecord deport-boolean deport-integer dispose-alien
fexpr find-if-in-closure gr-bind gr-call gr-call* gr-error double-float-radix enable-interrupt enumeration fd-stream
ignore-interrupt int-sap invalidate-descriptor long-float-radix fd-stream-fd fd-stream-p fexpr find-if-in-closure gr-bind gr-call
long-words macro make-alien make-ct-a-val make-fd-stream gr-call* gr-error ignore-interrupt int-sap invalidate-descriptor
make-indenting-stream make-object-set map-port map-xwindow long-float-radix long-words macro make-alien make-ct-a-val
naturalize-boolean naturalize-integer null-terminated-string make-fd-stream make-indenting-stream make-object-set map-port
object-set-operation output-raw-bytes parse-body perq-string map-xwindow naturalize-boolean naturalize-integer
pointer port primep read-n-bytes record-size remove-fd-handler null-terminated-string object-set-operation output-raw-bytes
remove-port-death-handler remove-port-object parse-body perq-string pointer port primep read-n-bytes
remove-xwindow-object resolve-loaded-assembler-references sap+ record-size remove-fd-handler remove-port-death-handler
sap- sap-int sap-ref-16 sap-ref-32 sap-ref-8 sap-ref-sap remove-port-object remove-xwindow-object
serve-all-events serve-event server server-message resolve-loaded-assembler-references sap+ sap- sap-int sap-ref-16
short-float-radix signed-sap-ref-16 signed-sap-ref-32 sap-ref-32 sap-ref-8 sap-ref-sap serve-all-events serve-event
signed-sap-ref-8 single-float-radix symbol-macro-let server server-message short-float-radix signed-sap-ref-16
system-area-pointer system-area-pointer-p unproclaim unstructured signed-sap-ref-32 signed-sap-ref-8 single-float-radix
wait-until-fd-usable with-enabled-interrupts with-fd-handler symbol-macro-let system-area-pointer system-area-pointer-p
with-interrupts with-reply-port with-stack-alien without-gcing unproclaim unstructured wait-until-fd-usable
without-hemlock without-interrupts words)) with-enabled-interrupts with-fd-handler with-interrupts
with-reply-port with-stack-alien without-gcing without-hemlock
without-interrupts words))
(in-package "USER") (in-package "USER")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment