module: remote-access-path synopsis: Intepretation of machine instructions on the dummy simulator author: Paul Howard, Nosa Omo Copyright: Original Code is Copyright (c) 1995-2004 Functional Objects, Inc. All rights reserved. License: Functional Objects Library Public License Version 1.0 Dual-license: GNU Lesser General Public License Warranty: Distributed WITHOUT WARRANTY OF ANY KIND ///// INTERPRET-INSTRUCTION-AT-CURRENT-LOCATION define method interpret-instruction-on-connection (conn :: , thread :: ) => (flow, destination :: false-or(), length :: false-or()) let (flow-code :: , target :: , size-in-bytes :: ) = Rtmgr/RemoteNub/interpret-instruction-at-current-location (conn.nub, thread.rnub-descriptor); if (flow-code == $flowIllegal) values(flow-code, #f, #f) else values(flow-code, as-remote-value(target), size-in-bytes) end if end method;