Cleanup - unused code removal. TODO: consider to remove (replace with flag class methods) also kmp_wait_64 and kmp_release_64 routines. Patch by Andrey Churbanov Differential Revision: http://reviews.llvm.org/D21332 llvm-svn: 272697
27 lines
781 B
C++
27 lines
781 B
C++
/*
|
|
* kmp_wait_release.cpp -- Wait/Release implementation
|
|
*/
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is dual licensed under the MIT and the University of Illinois Open
|
|
// Source Licenses. See LICENSE.txt for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "kmp_wait_release.h"
|
|
|
|
void __kmp_wait_64(kmp_info_t *this_thr, kmp_flag_64 *flag, int final_spin
|
|
USE_ITT_BUILD_ARG(void * itt_sync_obj) )
|
|
{
|
|
__kmp_wait_template(this_thr, flag, final_spin
|
|
USE_ITT_BUILD_ARG(itt_sync_obj) );
|
|
}
|
|
|
|
void __kmp_release_64(kmp_flag_64 *flag) {
|
|
__kmp_release_template(flag);
|
|
}
|