#1 Members - Reputation: 171
Posted 21 September 2012 - 01:04 AM
No memory leaks when I do single thread, but when I create another thread to handle that same function, I got memory leaks. That function handles some Direct3D loading too. Do I have to release something before exiting the thread?
#2 Members - Reputation: 696
Posted 21 September 2012 - 02:12 AM
without any code, it's hard to help you
as you should know, in threading, all threads can access the same (shared) memory
without mutex locks, you can't be certain that the same memory isnt accessed or overwritten by threads at the same time
one bad example is: if you allocate memory at the same time on both threads, both pointers could end up with the same value! (memory offset)
threads don't necessarily start in the order you started them in
they don't execute at the same speed
just google threads! theres LOTS you need to know about them before you can start using them in a game!!
start using threads in a small test project and find out what you can and can't do!
#4 Members - Reputation: 171
Posted 21 September 2012 - 05:49 AM
check if the directx functions you are using are thread-safe without any code, it's hard to help you as you should know, in threading, all threads can access the same (shared) memory without mutex locks, you can't be certain that the same memory isnt accessed or overwritten by threads at the same time one bad example is: if you allocate memory at the same time on both threads, both pointers could end up with the same value! (memory offset) threads don't necessarily start in the order you started them in they don't execute at the same speed just google threads! theres LOTS you need to know about them before you can start using them in a game!! start using threads in a small test project and find out what you can and can't do!
Have you tried non-blocking or asynchronous I/O?I know how bad it is to go multi-threading, but I don't know how else I will load stuff behind the loading screen.
I've created a mutex lock, still doesn't fix the leaks. I've tried WM_TIMER which I understand it's one of asyn io processes, doesn't fix the leak either. So I don't think it's multi-threading resource issue.
Here's the some sort of algorithm. Hope this will help.
Retrieve info
if player is initialized.
{
separate the player and equipments from resource pool.
}
Flush the resource pool. This includes Skybox primitives and texture, object's model and animation, terrain, and lights' shadow maps.
Open the file
if(file == null)
{
Messagebox ("cannot open file")
exit
}
Load new resources by reading info from the file.
if player is initialized
{
add the player and equipments back to resource pool
}
else
{
initialize player and add it to the resource pool
}
delete file.
hide loading screen.
release mutex
close mutex
Edited by Knight52, 21 September 2012 - 05:50 AM.






