CodeSonar C++ API
[For improved navigation, enable JavaScript.]
csonar_multiprocess_mode_decls.hpp
Go to the documentation of this file.
1 
2 /*
3  * Copyright (c) 2023, an unpublished work by CodeSecure, Inc.
4  * ALL RIGHTS RESERVED
5  *
6  * Copyright (c) 2013-2023, an unpublished work by GrammaTech, Inc.
7  * ALL RIGHTS RESERVED
8  *
9  * This software is furnished under a license and may be used and
10  * copied only in accordance with the terms of such license and the
11  * inclusion of the above copyright notice. This software or any
12  * other copies thereof may not be provided or otherwise made
13  * available to any other person. Title to and ownership of the
14  * software is retained by CodeSecure, Inc.
15  */
24  static const multiprocess_mode INITIALIZING;
25 
26 
28  static const multiprocess_mode SERIAL;
29 
30 
32  static const multiprocess_mode MASTER;
33 
34 
36  static const multiprocess_mode SLAVE;
static const multiprocess_mode SLAVE
Indicates that CodeSonar is running in parallel mode, and the current process is an analysis slave or...
Definition: csonar_multiprocess_mode_decls.hpp:36
static const multiprocess_mode SERIAL
Indicates that CodeSonar is running in serial mode (and therefore there is only one analysis process ...
Definition: csonar_multiprocess_mode_decls.hpp:28
static const multiprocess_mode MASTER
Indicates that CodeSonar is running in parallel mode, and the current process is the analysis master ...
Definition: csonar_multiprocess_mode_decls.hpp:32
static const multiprocess_mode INITIALIZING
Every CodeSonar process always starts in this state.
Definition: csonar_multiprocess_mode_decls.hpp:24