diff options
Diffstat (limited to 'src/algebra/system.spad.pamphlet')
-rw-r--r-- | src/algebra/system.spad.pamphlet | 27 |
1 files changed, 16 insertions, 11 deletions
diff --git a/src/algebra/system.spad.pamphlet b/src/algebra/system.spad.pamphlet index 57eb4eaa..70b31162 100644 --- a/src/algebra/system.spad.pamphlet +++ b/src/algebra/system.spad.pamphlet @@ -17,34 +17,39 @@ )abbrev package SYSTEM System ++ Author: Gabriel Dos Reis ++ Date Created: April 2, 2008. +++ Date Last Modified: February 6, 2009. ++ Related Constructors: ++ Description: ++ The package \spadtype{System} provides information about ++ the runtime system and its characteristics. System(): Public == Private where - Public ==> with + Public == Type with rootDirectory: () -> String ++ rootDirectory() returns the pathname of the root directory ++ for the running OpenAxiom system. - hostPlatform: () -> String - ++ hostPlatform() returns a string `triplet' description + hostPlatform: String + ++ \spad{hostPlatform} is a string `triplet' description ++ of the platform hosting the running OpenAxiom system. - nativeModuleExtension: () -> String - ++ nativeModuleExtension() returns a string representation + hostByteOrder: ByteOrder + ++ \sapd{hostByteOrder} + nativeModuleExtension: String + ++ \spad{nativeModuleExtension} is a string representation ++ of a filename extension for native modules. loadNativeModule: String -> Void ++ loadNativeModule(path) loads the native modile designated ++ by \spadvar{path}. - Private ==> add + Private == add rootDirectory() == - systemRootDirectory()$Lisp : String + systemRootDirectory()$Lisp - hostPlatform() == - _$hostPlatform$Lisp : String + hostPlatform == + _$hostPlatform$Lisp - nativeModuleExtension() == - _$NativeModuleExt$Lisp : String + hostByteOrder == %hostByteOrder$Lisp + + nativeModuleExtension == + _$NativeModuleExt$Lisp loadNativeModule(path) == loadNativeModule(path)$Lisp |