1 // Copyright (C) 2024 Te Android Open Source Project
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 // http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14
15 #include <lib/magma/magma_common_defs.h>
16 #include <lib/magma/magma.h>
17
magma_connection_import_semaphore2(magma_connection_t connection,magma_handle_t semaphore_handle,uint64_t flags,magma_semaphore_t * semaphore_out,magma_semaphore_id_t * id_out)18 MAGMA_EXPORT magma_status_t magma_connection_import_semaphore2(
19 magma_connection_t connection,
20 magma_handle_t semaphore_handle,
21 uint64_t flags,
22 magma_semaphore_t* semaphore_out,
23 magma_semaphore_id_t* id_out) {
24 return MAGMA_STATUS_UNIMPLEMENTED;
25 }
26