2008-02-29 01:10:37 -05:00
|
|
|
USING: kernel io.nonblocking io.unix.backend math.bitfields
|
2008-04-02 21:09:56 -04:00
|
|
|
unix io.files.unique.backend system ;
|
2008-02-29 01:10:37 -05:00
|
|
|
IN: io.unix.files.unique
|
|
|
|
|
|
|
|
: open-unique-flags ( -- flags )
|
|
|
|
{ O_RDWR O_CREAT O_EXCL } flags ;
|
|
|
|
|
2008-04-02 21:09:56 -04:00
|
|
|
M: unix (make-unique-file) ( path -- )
|
2008-03-20 17:52:22 -04:00
|
|
|
open-unique-flags file-mode open dup io-error close ;
|
2008-02-29 01:10:37 -05:00
|
|
|
|
2008-04-02 21:09:56 -04:00
|
|
|
M: unix temporary-path ( -- path ) "/tmp" ;
|