Issue 3703 in pharo: cogitClass / interpreterClass

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
2 messages Options
Reply | Threaded
Open this post in threaded view
|

Issue 3703 in pharo: cogitClass / interpreterClass

pharo
Status: Fixed
Owner: [hidden email]
Labels: Milestone-1.3

New issue 3703 by [hidden email]: cogitClass / interpreterClass
http://code.google.com/p/pharo/issues/detail?id=3703

add these two methods


Reply | Threaded
Open this post in threaded view
|

Re: Issue 3703 in pharo: cogitClass / interpreterClass

pharo
Updates:
        Status: Closed

Comment #1 on issue 3703 by [hidden email]: cogitClass /  
interpreterClass
http://code.google.com/p/pharo/issues/detail?id=3703

Alexander Lazarević uploaded a new version of System to project The  
Trunk:
http://source.squeak.org/trunk/System-laza.420.mcz

==================== Summary ====================

Name: System-laza.420
Author: laza
Time: 8 February 2011, 11:46:58.466 am
UUID: e6f5183c-6a98-764c-b348-b52e9e9a69de
Ancestors: System-ul.419

Add system attributes 1007 and 1008 for Cog VMs

=============== Diff against System-ul.419 ===============

Item was added:
+ ----- Method: SmalltalkImage>>cogitClass (in category 'vm') -----
+ cogitClass
+       ^self getSystemAttribute: 1008!

Item was changed:
  ----- Method: SmalltalkImage>>getSystemAttribute: (in category 'private')  
-----
  getSystemAttribute: attributeID
        "Optional. Answer the string for the system attribute with the given
        integer ID. Answer nil if the given attribute is not defined on this
        platform. On platforms that support invoking programs from command
        lines (e.g., Unix), this mechanism can be used to pass command line
        arguments to programs written in Squeak.

        By convention, the first command line argument that is not a VM
        configuration option is considered a 'document' to be filed in. Such  
a
        document can add methods and classes, can contain a serialized  
object,
        can include code to be executed, or any combination of these.

        Currently defined attributes include:
        -1000   1000th command line argument that specify VM options
        ...
        -1              first command line argument that specify VM options
        0               the full path name for currently executing VM
                        (or, on some platforms, just the path name of the  
VM's directory)
        1               full path name of this image (better use  
primImageName instead)
        2               a Squeak document to open, if any
        3               first command line argument for Squeak programs
        ...
        1000    1000th command line argument for Squeak programs
        1001    this platform's operating system 'Mac  
OS', 'Win32', 'unix', ...
        1002    operating system version
        1003    this platform's processor type
        1004    vm version
        1005    window system name
        1006    vm build id
+       1007    Interpreter class (Cog VM only)
+       1008    Cogit class (Cog VM only)
        1201    always returns 255 (Mac OS only)
        1202    file last error (Mac OS only)
        10001   hardware details (Win32 only)
        10002   operating system details (Win32 only)
        10003   graphics hardware details (Win32 only)
        "

        <primitive: 149>
        ^ nil!

Item was added:
+ ----- Method: SmalltalkImage>>interpreterClass (in category 'vm') -----
+ interpreterClass
+       ^self getSystemAttribute: 1007!