2008-10-06 18:17:14 -04:00
|
|
|
! Copyright (C) 2008 Doug Coleman.
|
|
|
|
! See http://factorcode.org/license.txt for BSD license.
|
2008-12-14 21:03:00 -05:00
|
|
|
USING: kernel io.ports io.backend.unix math.bitwise
|
2008-12-08 22:32:36 -05:00
|
|
|
unix system io.files.unique ;
|
2008-12-14 21:03:00 -05:00
|
|
|
IN: io.files.unique.unix
|
2008-02-29 01:10:37 -05:00
|
|
|
|
|
|
|
: open-unique-flags ( -- flags )
|
|
|
|
{ O_RDWR O_CREAT O_EXCL } flags ;
|
|
|
|
|
2009-01-26 16:05:15 -05:00
|
|
|
M: unix (touch-unique-file) ( path -- )
|
2008-05-14 07:08:57 -04:00
|
|
|
open-unique-flags file-mode open-file close-file ;
|
2008-02-29 01:10:37 -05:00
|
|
|
|
2009-01-26 16:05:15 -05:00
|
|
|
M: unix default-temporary-directory ( -- path ) "/tmp" ;
|