Run

is deprecated and everything was supposed to be moved to 
    
    
    _t
    
    Run

but it looks like that particular call in syslocks.nim hasn't been.

I think the diff could be as simple as

154 - L = cast[SysLock](c_malloc(sizeof(SysLockObj)))
    

  * L= cast[SysLock](c_malloc(uint(sizeof(SysLockObj))))



and

204 - cond = cast[SysCond](c_malloc(sizeof(SysCondObj)))
    

  * cond = cast[SysCond](c_malloc(uint(sizeof(SysCondObj))))



but I can't test it, i'm afraid

Reply via email to