fixed path problem
svn: r17675
This commit is contained in:
parent
2dcfe69763
commit
7d34a9ecd5
|
@ -1,12 +1,16 @@
|
|||
#lang scheme/gui
|
||||
(require profile)
|
||||
(require profile
|
||||
scheme/runtime-path)
|
||||
|
||||
(define-runtime-path perform-robby "perform-robby.ss")
|
||||
|
||||
(profile-thunk
|
||||
(λ ()
|
||||
(parameterize ([current-eventspace (make-eventspace)])
|
||||
(let ([s (make-semaphore 0)])
|
||||
(queue-callback
|
||||
(λ ()
|
||||
(dynamic-require "perform-robby.ss" #f)
|
||||
(dynamic-require perform-robby #f)
|
||||
(semaphore-post s)))
|
||||
(semaphore-wait s))))
|
||||
#:threads #t)
|
||||
|
|
Loading…
Reference in New Issue
Block a user