Exemplo n.º 1
0
int test_print_symbol(void) {
  int local_var = 3;
  global_var = 2 + local_var * 0; /* Use local variable to prevent warning.  */
  set_global_var(1);
  nested_calls(1);
  return global_var;
}
//######################################################################################################################
void* monitorCLIENT(void *argv)				//thread for client network
{
          set_global_var(mem_alloc());   //allocates the value to all the coins objects needed to store their attributes and all global variables and after that only global_var is used      
	initClient(((struct thread_data *) argv )-> args);
}