make-temporary-file doesn't not make unique file under multithreading environment

Issue #81 resolved
Takashi Kato repo owner created an issue

This may creates the same file;

(import (srfi :18) (util file))
(map thread-start!
         (map (lambda (a) (make-thread (lambda () (make-temporary-file))) '(1 2 3)))

Comments (1)

  1. Log in to comment