EVTHREAD_LOCKTYPE_RECURSIVE

A recursive lock is one that can be acquired multiple times at once by the * same thread. No other process can allocate the lock until the thread that * has been holding it has unlocked it as many times as it locked it.

extern (C) nothrow
enum EVTHREAD_LOCKTYPE_RECURSIVE = 1;

Meta