Changeset 4898


Ignore:
Timestamp:
Jul 23, 2006, 1:53:47 AM (18 years ago)
Author:
Gary Byers
Message:

Start to define what a BASIC-STREAM looks like.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ccl/library/lispequ.lisp

    r4887 r4898  
    12781278  lisp-thread.state-change-lock
    12791279  )
    1280      
     1280
     1281;;; "basic" (e.g., builtin, non-extensible) streams.
     1282(def-accessors (basic-stream) %svref
     1283  basic-stream.class                    ; a class object
     1284  basic-stream.flags                    ; fixnum; bits.
     1285  basic-stream.state                    ; typically an ioblock
     1286)
     1287
     1288(def-accessors (basic-file-stream) %svref
     1289  basic-file-stream.class                    ; a class object
     1290  basic-file-stream.flags                    ; fixnum; bits.
     1291  basic-file-stream.state                    ; typically an ioblock
     1292  basic-file-stream.filename
     1293  basic-file-stream.actual-filename
     1294  )
     1295
     1296 
     1297 
     1298
     1299
    12811300(provide "LISPEQU")
    12821301
Note: See TracChangeset for help on using the changeset viewer.