/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You 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 _DECAF_INTERNAL_UTIL_CONCURRENT_UNIX_PLATFORMDEFS_H_ #define _DECAF_INTERNAL_UTIL_CONCURRENT_UNIX_PLATFORMDEFS_H_ #include #if HAVE_PTHREAD_H #include #endif #if HAVE_SIGNAL_H #include #endif #if HAVE_STRING_H #include #endif #if HAVE_SCHED_H #include #endif #if HAVE_SYS_TIME_H #include #endif #if HAVE_UNISTD_H #include #endif #if HAVE_TIME_H #include #endif namespace decaf{ namespace internal{ namespace util{ namespace concurrent{ typedef void* PLATFORM_THREAD_ENTRY_ARG; #define PLATFORM_THREAD_RETURN() return 0; #define PLATFORM_THREAD_CALLBACK_TYPE void* #define PLATFORM_DEFAULT_STACK_SIZE 0x8000 #define PLATFORM_CALLING_CONV typedef pthread_t decaf_thread_t; typedef pthread_key_t decaf_tls_key; typedef pthread_cond_t* decaf_condition_t; typedef pthread_mutex_t* decaf_mutex_t; typedef pthread_rwlock_t* decaf_rwmutex_t; }}}} #endif /* _DECAF_INTERNAL_UTIL_CONCURRENT_UNIX_PLATFORMDEFS_H_ */