b2542d2942
The APIs that are tagged with # vndk are actually for LLNDK libraries.
Although LLNDK is part of VNDK, calling those APIs 'vndk' has given
users a wrong perception that the APIs don't need to be kept stable
because that's the norm for most of the VNDK libraries that are not
LLNDK.
In order to eliminate the misunderstanding, rename the tag to 'llndk' so
that people introducing new such API will realize what they are signing
themselves up for.
Bug: 143765505
Test: m
Merged-In: Iae2acdf1ff4097a64a5c6280797c66abb1d5a5e6
(cherry picked from commit 0e957b82c8
)
Change-Id: Iae2acdf1ff4097a64a5c6280797c66abb1d5a5e6
28 lines
862 B
Text
28 lines
862 B
Text
#
|
|
# Copyright 2017 The Android Open Source Project
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
#
|
|
|
|
LIBSYNC {
|
|
global:
|
|
sync_merge; # introduced=26
|
|
sync_file_info; # introduced=26
|
|
sync_file_info_free; # introduced=26
|
|
sync_wait; # llndk
|
|
sync_fence_info; # llndk
|
|
sync_pt_info; # llndk
|
|
sync_fence_info_free; # llndk
|
|
local:
|
|
*;
|
|
};
|