Ocean/ICCC/InitCacheNow.go

14 lines
243 B
Go
Raw Permalink Normal View History

2015-06-17 15:44:52 +00:00
package ICCC
// Starts the timer cache once and exit it after (no thread, no endless loop).
func InitCacheNow() {
startCacheTimerLock.Lock()
defer startCacheTimerLock.Unlock()
if cacheTimerRunning {
return
}
cacheTimerLogic(false)
}