Another question....
Displaying 1-3 of 3 total.
1
Please enter a numerical value for the importance of this sticky.
Enter 0 to unsticky.
timbecile

So I was playing with calling functions within functions and stuff and came up with a question...

in this example:

void MyFunction()
{
DoThing();
DoOtherThing();
}


Does it wait for DoThing to be done before going on to DoOtherThing? or will it do both at the same time?

Posted on 2004-10-26 09:07:22

Feyr

It waits for DoThing to complete first, and the continues with DoOtherThing. V3 doesn't support multiple threads of execution...it's only ever doing one thing at any given moment.

Trust me, this is a good thing even if it doesn't sound like it. You really don't want the headache of multithreading in something like Verge. ;P

That being said, there are ways to fake it if you really, really need to, but you should probably get the hang of linear programming before you look into fake multithreaded programming.

Posted on 2004-10-26 09:16:34

Omni

The good news is, by stepping through code function by function, it is obviously much easier to catch an error than if everything is running at the same time.

Posted on 2004-10-26 14:29:15


Displaying 1-3 of 3 total.
1
 
Newest messages

Ben McGraw's lovingly crafted this website from scratch for years.
It's a lot prettier this go around because of Jon Wofford.
Verge-rpg.com is a member of the lunarnet irc network, and would like to take this opportunity to remind you that regardless how babies taste, it is wrong to eat them.