Added application exception list
[platform/core/connectivity/stc-manager.git] / src / monitor / include / stc-exception.h
1 /*
2  * Copyright (c) 2016 Samsung Electronics Co., Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #ifndef __STC_EXCEPTION_H__
18 #define __STC_EXCEPTION_H__
19
20 #define EXE_TYPE_APPLICATION "app"
21 #define EXE_TYPE_INSTRUCTION "inst"
22 #define EXE_TYPE_SYSTEM      "sys"
23 #define EXE_TYPE_SCRIPT      "script"
24
25 typedef struct {
26         char *process_name;
27         char *exe_type;
28 } stc_exceptions_info;
29
30 typedef stc_cb_ret_e
31 (*stc_exceptions_info_cb)(const stc_exceptions_info *info,
32                               void *user_data);
33
34 stc_error_e table_exceptions_foreach(const stc_exceptions_info_cb exception_cb,
35                                        void *user_data);
36
37 stc_error_e pkginfo_exceptions_foreach(const stc_exceptions_info_cb exception_cb,
38                                        void *user_data);
39
40 #endif /*__STC_EXCEPTION_H__ */