OLD | NEW |
---|---|
1 All files in this directory are provided by the following license if not stated | |
2 otherwise in the individual file: | |
1 /* | 3 /* |
ulan
2015/06/16 10:55:49
Remove the comment?
Michael Hablich
2015/06/16 11:09:01
Done.
| |
2 This file is provided under a dual BSD/GPLv2 license. When using or | 4 This file is provided under a dual BSD/GPLv2 license. When using or |
3 redistributing this file, you may do so under either license. | 5 redistributing this file, you may do so under either license. |
4 | 6 |
5 GPL LICENSE SUMMARY | 7 GPL LICENSE SUMMARY |
6 | 8 |
7 Copyright(c) 2005-2012 Intel Corporation. All rights reserved. | 9 Copyright (c) 2005-2012 Intel Corporation. All rights reserved. |
8 | 10 |
9 This program is free software; you can redistribute it and/or modify | 11 This program is free software; you can redistribute it and/or modify |
10 it under the terms of version 2 of the GNU General Public License as | 12 it under the terms of version 2 of the GNU General Public License as |
11 published by the Free Software Foundation. | 13 published by the Free Software Foundation. |
12 | 14 |
13 This program is distributed in the hope that it will be useful, but | 15 This program is distributed in the hope that it will be useful, but |
14 WITHOUT ANY WARRANTY; without even the implied warranty of | 16 WITHOUT ANY WARRANTY; without even the implied warranty of |
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
16 General Public License for more details. | 18 General Public License for more details. |
17 | 19 |
18 You should have received a copy of the GNU General Public License | 20 You should have received a copy of the GNU General Public License |
19 along with this program; if not, write to the Free Software | 21 along with this program; if not, write to the Free Software |
20 Foundation, Inc., 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA. | 22 Foundation, Inc., 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA. |
21 The full GNU General Public License is included in this distribution | 23 The full GNU General Public License is included in this distribution |
22 in the file called LICENSE.GPL. | 24 in the file called LICENSE.GPL. |
23 | 25 |
24 Contact Information: | 26 Contact Information: |
25 http://software.intel.com/en-us/articles/intel-vtune-amplifier-xe/ | 27 http://software.intel.com/en-us/articles/intel-vtune-amplifier-xe/ |
26 | 28 |
27 BSD LICENSE | 29 BSD LICENSE |
28 | 30 |
29 Copyright(c) 2005-2012 Intel Corporation. All rights reserved. | 31 Copyright (c) 2005-2012 Intel Corporation. All rights reserved. |
30 All rights reserved. | 32 All rights reserved. |
31 | 33 |
32 Redistribution and use in source and binary forms, with or without | 34 Redistribution and use in source and binary forms, with or without |
33 modification, are permitted provided that the following conditions | 35 modification, are permitted provided that the following conditions |
34 are met: | 36 are met: |
35 | 37 |
36 * Redistributions of source code must retain the above copyright | 38 * Redistributions of source code must retain the above copyright |
37 notice, this list of conditions and the following disclaimer. | 39 notice, this list of conditions and the following disclaimer. |
38 * Redistributions in binary form must reproduce the above copyright | 40 * Redistributions in binary form must reproduce the above copyright |
39 notice, this list of conditions and the following disclaimer in | 41 notice, this list of conditions and the following disclaimer in |
40 the documentation and/or other materials provided with the | 42 the documentation and/or other materials provided with the |
41 distribution. | 43 distribution. |
42 * Neither the name of Intel Corporation nor the names of its | 44 * Neither the name of Intel Corporation nor the names of its |
43 contributors may be used to endorse or promote products derived | 45 contributors may be used to endorse or promote products derived |
44 from this software without specific prior written permission. | 46 from this software without specific prior written permission. |
45 | 47 |
46 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | 48 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
47 "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | 49 "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
48 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | 50 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
49 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | 51 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
50 OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | 52 OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
51 SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | 53 SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
52 LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | 54 LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
53 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 55 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
54 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 56 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
55 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 57 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
56 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 58 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
57 */ | 59 */ |
58 #ifndef _ITTNOTIFY_TYPES_H_ | |
59 #define _ITTNOTIFY_TYPES_H_ | |
60 | |
61 typedef enum ___itt_group_id | |
62 { | |
63 __itt_group_none = 0, | |
64 __itt_group_legacy = 1<<0, | |
65 __itt_group_control = 1<<1, | |
66 __itt_group_thread = 1<<2, | |
67 __itt_group_mark = 1<<3, | |
68 __itt_group_sync = 1<<4, | |
69 __itt_group_fsync = 1<<5, | |
70 __itt_group_jit = 1<<6, | |
71 __itt_group_model = 1<<7, | |
72 __itt_group_splitter_min = 1<<7, | |
73 __itt_group_counter = 1<<8, | |
74 __itt_group_frame = 1<<9, | |
75 __itt_group_stitch = 1<<10, | |
76 __itt_group_heap = 1<<11, | |
77 __itt_group_splitter_max = 1<<12, | |
78 __itt_group_structure = 1<<12, | |
79 __itt_group_suppress = 1<<13, | |
80 __itt_group_all = -1 | |
81 } __itt_group_id; | |
82 | |
83 #pragma pack(push, 8) | |
84 | |
85 typedef struct ___itt_group_list | |
86 { | |
87 __itt_group_id id; | |
88 const char* name; | |
89 } __itt_group_list; | |
90 | |
91 #pragma pack(pop) | |
92 | |
93 #define ITT_GROUP_LIST(varname) \ | |
94 static __itt_group_list varname[] = { \ | |
95 { __itt_group_all, "all" }, \ | |
96 { __itt_group_control, "control" }, \ | |
97 { __itt_group_thread, "thread" }, \ | |
98 { __itt_group_mark, "mark" }, \ | |
99 { __itt_group_sync, "sync" }, \ | |
100 { __itt_group_fsync, "fsync" }, \ | |
101 { __itt_group_jit, "jit" }, \ | |
102 { __itt_group_model, "model" }, \ | |
103 { __itt_group_counter, "counter" }, \ | |
104 { __itt_group_frame, "frame" }, \ | |
105 { __itt_group_stitch, "stitch" }, \ | |
106 { __itt_group_heap, "heap" }, \ | |
107 { __itt_group_structure, "structure" }, \ | |
108 { __itt_group_suppress, "suppress" }, \ | |
109 { __itt_group_none, NULL } \ | |
110 } | |
111 | |
112 #endif /* _ITTNOTIFY_TYPES_H_ */ | |
113 | |
OLD | NEW |