;;; long is another question. This stuff still needs testing.
(define-alien-routine ("os_context_fpregister_addr" context-float-register-addr)
(* os-context-register-t)
- (context (* os-context-t))
- (index int))
+ (context (* os-context-t) :in)
+ (index int :in))
(defun context-float-register (context index format)
(declare (type (alien (* os-context-t)) context))
("arch_get_fp_control" floating-point-modes) unsigned-int)
(define-alien-routine
- ("arch_set_fp_control" %floating-point-modes-setter) void (fp unsigned-int))
+ ("arch_set_fp_control" %floating-point-modes-setter) void (fp unsigned-int :in))
(defun (setf floating-point-modes) (val) (%floating-point-modes-setter val))
;;; the same format as returned by FLOATING-POINT-MODES.
(define-alien-routine ("os_context_fp_control" context-floating-point-modes)
unsigned-int
- (context (* os-context-t)))
+ (context (* os-context-t) :in))
;;;; Internal-error-arguments.
;;; checkins which aren't released. (And occasionally for internal
;;; versions, especially for internal versions off the main CVS
;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".)
-"1.0.8.46"
+"1.0.8.47"