O
Olumide
Hi -
I've got a class that contains static member functions alone, all of
whose arguments are passed by reference as shown below:
class MySpiffyClass{
// no constructor, destructor or variables, just static members
static void FirstFunction( args & );
static void SecondFunction( args & );
static void ThirdFunction( args & );
...
};
Will this class require synchronization -- In the event that
simultaneous calls to MySpiffyClass::FirstFunction( a_set_of_args )
for example are made? The case is clear if the class contains static
members.
Thanks,
- Olumide
I've got a class that contains static member functions alone, all of
whose arguments are passed by reference as shown below:
class MySpiffyClass{
// no constructor, destructor or variables, just static members
static void FirstFunction( args & );
static void SecondFunction( args & );
static void ThirdFunction( args & );
...
};
Will this class require synchronization -- In the event that
simultaneous calls to MySpiffyClass::FirstFunction( a_set_of_args )
for example are made? The case is clear if the class contains static
members.
Thanks,
- Olumide