| Delphi .NET (2) Database (72) Delphi IDE (90) Network (39) Printing (3) Strings (12) VCL (83) Windows with Delphi (243) Windows API (94) Windows Filesystem (41) Windows Forms (69) Windows Graphics (38) |
Assign the current thread to the first CPU
Question: My application crashes on systems with multiple CPUs or dual-core CPUsAnswer: You probably have some re-entrancy problem. Try to force all threads to run on CPU 1. This means to put the code from below in all threads and of course in the main thread, e.g. in FormCreate().
Comments:
|