AbstractOperatingSystem.st
branchjv
changeset 18117 eb433f2c42b2
parent 18115 26ac4840e5d0
parent 15914 023687d16587
child 18120 e3a375d5f6a8
equal deleted inserted replaced
18116:bf7f37b63ea2 18117:eb433f2c42b2
  6233 
  6233 
  6234     self subclassResponsibility
  6234     self subclassResponsibility
  6235 !
  6235 !
  6236 
  6236 
  6237 setBlocking:aBoolean on:fd
  6237 setBlocking:aBoolean on:fd
  6238     "{ Pragma: +optSpace }"
       
  6239 
       
  6240     "set/clear the blocking attribute - if set (which is the default)
  6238     "set/clear the blocking attribute - if set (which is the default)
  6241      a read on the fileDescriptor will block until data is available.
  6239      a read on the fileDescriptor will block until data is available.
  6242      If cleared, a read operation will immediately return with a value of nil.
  6240      If cleared, a read operation will immediately return with a value of nil.
  6243      Also affects write operations, which may perform partial writes when
  6241      Also affects write operations, which may perform partial writes when
  6244      blocking is off"
  6242      blocking is off. Answer the previous blocking status."
       
  6243 
       
  6244     "{ Pragma: +optSpace }"
  6245 
  6245 
  6246     self subclassResponsibility
  6246     self subclassResponsibility
  6247 !
  6247 !
  6248 
  6248 
  6249 writeCheck:fd
  6249 writeCheck:fd
  7271 ! !
  7271 ! !
  7272 
  7272 
  7273 !AbstractOperatingSystem class methodsFor:'documentation'!
  7273 !AbstractOperatingSystem class methodsFor:'documentation'!
  7274 
  7274 
  7275 version
  7275 version
  7276     ^ '$Header: /cvs/stx/stx/libbasic/AbstractOperatingSystem.st,v 1.247 2013-12-17 16:46:34 cg Exp $'
  7276     ^ '$Header: /cvs/stx/stx/libbasic/AbstractOperatingSystem.st,v 1.248 2014-01-28 19:37:53 stefan Exp $'
  7277 !
  7277 !
  7278 
  7278 
  7279 version_CVS
  7279 version_CVS
  7280     ^ '$Header: /cvs/stx/stx/libbasic/AbstractOperatingSystem.st,v 1.247 2013-12-17 16:46:34 cg Exp $'
  7280     ^ '$Header: /cvs/stx/stx/libbasic/AbstractOperatingSystem.st,v 1.248 2014-01-28 19:37:53 stefan Exp $'
  7281 ! !
  7281 ! !
  7282 
  7282 
  7283 
  7283 
  7284 AbstractOperatingSystem initialize!
  7284 AbstractOperatingSystem initialize!