** Warning **

Issuing rollback() due to DESTROY without explicit disconnect() of DBD::mysql::db handle dbname=lxr at /lxr/lib/LXR/Common.pm line 1113.

Last-Modified: Wed, 17 Jun 2025 01:30:52 GMT Content-Type: text/html; charset=utf-8 /CMSSW_15_1_X_2025-06-16-2300/Utilities/StaticAnalyzers/test/func_checker.cpp
Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-12-19 04:04:57

0001 #include "FWCore/Utilities/interface/thread_safety_macros.h"
0002 #include "func_checker.h"
0003 
0004 CMS_THREAD_GUARD(dummy) static int global_static = 23;
0005 class Bar {
0006 public:
0007   Bar() {}
0008   CMS_THREAD_GUARD(dummy2) static int member_static;
0009   void bar() {
0010     /*CMS_THREAD_SAFE*/ static int local_static;
0011     member_static = global_static;
0012     local_static = global_static;
0013     member_static = external_int;
0014     local_static = external_int;
0015   }
0016 };
0017 
0018 int main() { return 0; }