Abraxas/ECS C++ Home  Table of Contents 

Module - 64.html

ABRAXAS SOFTWARE - CodeCheck ECS C++ Test-Suite ECS C++.

ECS C++-C Test Suite for Module - 64.cpp

/*

64. Design for reentrancy.

*/
typedef int FOO;   
FOO	FOO_GLO;

// multi-thread code cannot use global's each method must have unique instance




Function Name: Thread()

int Thread() { 		
 int locfoo;
  FOO_GLO ++;		// 64. Design for reentrancy.
}

Abraxas/ECS C++ Home  Table of Contents

ABRAXAS SOFTWARE - CodeCheck ECS C++ Test-Suite ECS C++