I'm sure it comes up all the time a project has too much data simply keeping them in files that are edited by hand, but not so complicated that a big fancy tool like a DB is necessary.
I want to use a bunch of code from one project in another project, one has to be a dll, the other has to be a special mll file that is just a maya version of a dll file.
I already have the means to check if two points are on the same side of a plane defined as three points. That is almost always the case that comes up, but in one place all I ever have is a point and...
It would be called not using C++, no matter what method you use debugging it will be an issue. There's a difference between being helpful and argumentative, and argumentative nonsense that doesn't...
Remember a lock's not useful if just one thing uses it. The receive data looks ok, but if the buffer is shared between threads both sides must use the lock, if not, it's not needed.
It looks like I use something before it gets created if things get initialized in certain order. I didn't suspect that location because it has been like that for...
Suddenly I get a prompt to save out a key for EFS, but I have never turned on this feature and it's never done this before. I am using windows vista ultimate. Is this normal or is there a problem? A...
Ok, yes I guess it's basically a 'policy'. Some of this does not gel well in my brain, but I see how helpful a policy can be now and what it means, and it is sort of like the CRT.
Of course you get the wrong address, what you are doing makes no sense because the types inside are different. You might want to use a void* instead, or it could be what you want is not something...
If that's impossible, try separating into multiple locks, on a section by section basis (or whatever). It won't help as much as a more thorough solution but it can speed things up a lot under OSes...
I expected the diagram to have abit more and got a laugh when it said just 'extremely large data structure' 1+2 and some arrows, but I guess it is enough anyway.
He needs to not run out of memory, that's all there is to it. It's kind of insane that it just mindlessly reads files and grabs everything it can like that. It's more like a virus than a program.
...
Well, the point is to do it in a way order won't matter, that won't require any overhead, and doesn't require making every single variable use a lock and a guard variable.