14 lines
247 B
C++
14 lines
247 B
C++
|
|
//
|
||
|
|
// Copyright (c) 2008 Advanced Micro Devices, Inc. All rights reserved.
|
||
|
|
//
|
||
|
|
#ifndef _BE_SYNC_HPP_
|
||
|
|
#define _BE_SYNC_HPP_
|
||
|
|
|
||
|
|
namespace amdcl
|
||
|
|
{
|
||
|
|
void acquire_global_lock();
|
||
|
|
|
||
|
|
void release_global_lock();
|
||
|
|
} // namespace amdcl
|
||
|
|
#endif // _BE_SYNC_HPP_
|