G
Guest
Hi All,
If I have a procedure that obtains a sync lock:
Public Sub A
SyncLock Myobject
B()
End SyncLock
And another procedure which obtains the same synclock:
Public Sub B
SyncLock Myobject
... Do Stuff
End SyncLock
Will this cause a deadlock? Since A calls B - will the synclock be granted
to the subprocedure call?
Thanks.
If I have a procedure that obtains a sync lock:
Public Sub A
SyncLock Myobject
B()
End SyncLock
And another procedure which obtains the same synclock:
Public Sub B
SyncLock Myobject
... Do Stuff
End SyncLock
Will this cause a deadlock? Since A calls B - will the synclock be granted
to the subprocedure call?
Thanks.