Asylo
shared_name_kind.h
Go to the documentation of this file.
1 /*
2  *
3  * Copyright 2017 Asylo authors
4  *
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  * http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  *
17  */
18 
19 #ifndef ASYLO_PLATFORM_CORE_SHARED_NAME_KIND_H_
20 #define ASYLO_PLATFORM_CORE_SHARED_NAME_KIND_H_
21 
22 #ifdef __cplusplus
23 extern "C" {
24 #endif
25 
26 /// Separate namespaces for naming shared resources across the enclave boundary.
28  /// A default provided for resources that don't belong to any particular
29  /// namespace.
31 
32  /// An address resource.
34 
35  /// A socket resource.
37 
38  /// A timer resource.
40 
41  /// A shared memory block.
43 };
44 
45 #ifdef __cplusplus
46 }
47 #endif
48 
49 #endif // ASYLO_PLATFORM_CORE_SHARED_NAME_KIND_H_
SharedNameKind
Separate namespaces for naming shared resources across the enclave boundary.
Definition: shared_name_kind.h:27
A socket resource.
Definition: shared_name_kind.h:36
A default provided for resources that don't belong to any particular namespace.
Definition: shared_name_kind.h:30
A timer resource.
Definition: shared_name_kind.h:39
An address resource.
Definition: shared_name_kind.h:33
A shared memory block.
Definition: shared_name_kind.h:42