AbstractOperatingSystem.st
changeset 4147 1096115c96c8
parent 4146 9e06a0b5d37e
child 4149 f9437e0f6315
equal deleted inserted replaced
4146:9e06a0b5d37e 4147:1096115c96c8
  1675     "
  1675     "
  1676 !
  1676 !
  1677 
  1677 
  1678 supportsSharedLocks
  1678 supportsSharedLocks
  1679     "return true, if the OS supports shared (i.e. multiple reader)
  1679     "return true, if the OS supports shared (i.e. multiple reader)
  1680      file locking."
  1680      file locking. Assume false here - redefined in concrete classes."
  1681 
  1681 
  1682     ^ false
  1682     ^ false
  1683 
  1683 
  1684     "
  1684     "
  1685      OperatingSystem supportsNonBlockingFileLocks
  1685      OperatingSystem supportsNonBlockingFileLocks
  1686     "
  1686     "
       
  1687 
       
  1688     "Modified: / 5.5.1999 / 01:08:03 / cg"
  1687 !
  1689 !
  1688 
  1690 
  1689 supportsSymbolicLinks
  1691 supportsSymbolicLinks
  1690     "return true, if the OS supports symbolic links on files/directories.
  1692     "return true, if the OS supports symbolic links on files/directories.
  1691      Typically, only Unix returns true here"
  1693      Typically, only Unix returns true here"
  3689 ! !
  3691 ! !
  3690 
  3692 
  3691 !AbstractOperatingSystem class methodsFor:'documentation'!
  3693 !AbstractOperatingSystem class methodsFor:'documentation'!
  3692 
  3694 
  3693 version
  3695 version
  3694     ^ '$Header: /cvs/stx/stx/libbasic/AbstractOperatingSystem.st,v 1.15 1999-05-04 23:05:33 cg Exp $'
  3696     ^ '$Header: /cvs/stx/stx/libbasic/AbstractOperatingSystem.st,v 1.16 1999-05-04 23:06:27 cg Exp $'
  3695 ! !
  3697 ! !
  3696 AbstractOperatingSystem initialize!
  3698 AbstractOperatingSystem initialize!