The non-const getSkybox() method is especially useful to client code that needs to change the clear color, but does not have direct access to the Renderer object.
69 lines
2.2 KiB
C++
69 lines
2.2 KiB
C++
/*
|
|
* Copyright (C) 2016 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.
|
|
*/
|
|
|
|
#ifndef UTILS_LINUX_FUTEX_H
|
|
#define UTILS_LINUX_FUTEX_H
|
|
|
|
#include <linux/futex.h>
|
|
#include <sys/syscall.h>
|
|
#include <errno.h>
|
|
#include <stdbool.h>
|
|
#include <unistd.h>
|
|
|
|
#include <utils/compiler.h>
|
|
|
|
struct timespec;
|
|
|
|
namespace utils {
|
|
namespace linuxutil {
|
|
|
|
inline int futex(volatile void* ftx, int op, int value,
|
|
const struct timespec* timeout, int bitset) {
|
|
// from futex man pages:
|
|
// In the event of an error (and assuming that futex() was invoked via syscall(2)),
|
|
// all operations return -1 and set errno to indicate the cause of the error.
|
|
int err = (int)syscall(__NR_futex, ftx, op, value, timeout, nullptr, bitset);
|
|
if (UTILS_UNLIKELY(err == -1)) {
|
|
err = -errno;
|
|
}
|
|
return err;
|
|
}
|
|
|
|
inline int futex_wake(volatile void* ftx, int count) {
|
|
return futex(ftx, FUTEX_WAKE, count, nullptr, 0);
|
|
}
|
|
|
|
inline int futex_wake_ex(volatile void* ftx, bool shared, int count) {
|
|
return futex(ftx, shared ? FUTEX_WAKE : FUTEX_WAKE_PRIVATE, count, nullptr, 0);
|
|
}
|
|
|
|
inline int futex_wait(volatile void* ftx, int value, const struct timespec* timeout) {
|
|
return futex(ftx, FUTEX_WAIT, value, timeout, 0);
|
|
}
|
|
|
|
inline int futex_wait_ex(volatile void* ftx, bool shared, int value,
|
|
bool use_realtime_clock, const struct timespec* abs_timeout) {
|
|
return futex(ftx, (shared ? FUTEX_WAIT_BITSET : FUTEX_WAIT_BITSET_PRIVATE) |
|
|
(use_realtime_clock ? FUTEX_CLOCK_REALTIME : 0), value, abs_timeout,
|
|
FUTEX_BITSET_MATCH_ANY);
|
|
}
|
|
|
|
} // namespace linuxutil
|
|
} // namespace utils
|
|
|
|
|
|
#endif // UTILS_LINUX_FUTEX_H
|