DLL Server hangs when TDAConnectionManager is destroyed

Hi,
Using Delphi 10 Seattle 32-bit with RO/DA 9.0.97.1245.
When closing the app using DLL server, it hangs at TDAConnectionManager.Destroy on line fTimer.Free.
I can trace it to procedure TROThreadTimer.Free and see that it goes to the line WaitFor indefinitely.
Any idea why this happens ?
Thanks.

WaitFor won’t work correctly from DLL_PROCESS_DETACH so I can suggest to stop timer in ConnectionManager like:

ConnectionManager.ClearPool;
ConnectionManager.PoolTimeoutSeconds := 0;

after this, you can free ConnectionManager.

Unfortunately, this doesn’t solve the problem which now occurs on the line: ConnectionManager.PoolTimeoutSeconds := 0
fTimer.Free is called in procedure TDAConnectionManager.SetPoolTimeoutSeconds which then goes back to WaitFor.
Any other ideas ?
Thanks.

you can don’t use thread polling at all.
set these properties in design-time or after creating ConnectionManager.

ConnectionManager.PoolingEnabled := False;
ConnectionManager.PoolTimeoutSeconds := 0;

in this case, internal TROThreadTimer won’t be created.

Problem fixed for connection manager but now occurs in destructor TROInMemorySessionManager.Destroy => KillTimer
Why ?
It looks like something is going wrong with timers

I can’t reproduce this issue with simple testcase.
can you create a simple testcase that reproduces this case, pls?

It will be very hard to extract from the whole app. I’ll see what I can do.
Meanwhile, any idea what could cause this behavior with timers ?
Thanks.

destroying of threads inside DLL - this is a reason for such problems.
you can try to test this workaround:
copy implementation of TROThread.WaitFor to TROThreadTimer.WaitFor. it may solve your issue.

Yes, copy implementation of TROThread.WaitFor to TROThreadTimer.WaitFor fixed the problem!
Will it be included in a next update ?

Thanks, logged as bugs://75520

bugs://75520 got closed with status fixed.

yes, it will be in the next beta

WOW! When this patch will be available?

Many thank’s!

Hi,

#75520 was fixed 4 years ago


edit: you can ignore all messages with ixxxxx issues. it isn’t related to actual issues

1 Like

Revisiting this problem many years later as it occurs exactly the same after updating to 10.0.0.1607.
And TROThreadTimer doesn’t have a WaitFor method anymore.
Any help will be greatly appreciated.

Hi,

Can you create a simple testcase for this case, pls?
I’ll retest it with your testcase

you can drop email to support@ for keeping privacy

The problem is exactly the same as the one described earlier. I can’t extract from a very complex project. If you have an initial EXE ↔ DLL sample project, please send it and I’ll change it until I can reproduce this problem. Thanks

Hi,

try to replace

destructor TDAConnectionManager.Destroy;
..
  FreeAndNil(fTimer);

with

destructor TDAConnectionManager.Destroy;
..
  fTimer.Free; fTimer := nil;

looks like we did some refactoring and replaced fTimer.Free; fTimer := nil; with FreeAndNil(fTimer); again :frowning:


UPDATE: fixed for .1611

I confirm that both:

  • FTimer.AsyncFree;
  • fTimer.Free; fTimer := nil;

Fix the problem. Thank you.