blob: 4a73e036e6e4435442af340acbe7a9e3d6b25532 [file] [log] [blame]
// Copyright (C) 2015 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.
#include "android/utils/compiler.h"
#include <stdint.h>
ANDROID_BEGIN_HEADER
typedef intptr_t (*async_function_t)(void);
// Run the passed |func| in a separate thread, not waiting for it to finish
// If |maskSignals| is true, mask all Posix signals in the new thread
// Returns true if thread started succesfully
bool asyncWithParam(async_function_t func, bool maskSignals);
// Equivalent to asyncWithParam(func, true);
bool async(async_function_t func);
ANDROID_END_HEADER