X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcode%2Ftarget-allocate.lisp;h=40c6b0fb410fc784d0f97e1d529dee350d5391be;hb=0f3a5f2e8886d18d0b4f6485c38a42be629422ae;hp=2eec4aab8edd7032e373e9d36fe642af8ebb6b7b;hpb=4898ef32c639b1c7f4ee13a5ba566ce6debd03e6;p=sbcl.git diff --git a/src/code/target-allocate.lisp b/src/code/target-allocate.lisp index 2eec4aa..40c6b0f 100644 --- a/src/code/target-allocate.lisp +++ b/src/code/target-allocate.lisp @@ -13,20 +13,9 @@ (sb!alien:define-alien-routine ("os_allocate" allocate-system-memory) system-area-pointer - (bytes sb!alien:unsigned-long)) - -(sb!alien:define-alien-routine ("os_allocate_at" allocate-system-memory-at) - system-area-pointer - (address system-area-pointer) - (bytes sb!alien:unsigned-long)) - -(sb!alien:define-alien-routine ("os_reallocate" reallocate-system-memory) - system-area-pointer - (old system-area-pointer) - (old-size sb!alien:unsigned-long) - (new-size sb!alien:unsigned-long)) + (bytes sb!alien:unsigned)) (sb!alien:define-alien-routine ("os_deallocate" deallocate-system-memory) sb!alien:void (addr system-area-pointer) - (bytes sb!alien:unsigned-long)) + (bytes sb!alien:unsigned))