2013-09-05 05:47:46 +05:30
|
|
|
// Copyright 2013 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#ifndef _ATOMIC_H_
|
|
|
|
#define _ATOMIC_H_
|
|
|
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
|
2014-04-09 05:45:08 +05:30
|
|
|
#include "common/atomic_win32.h"
|
2013-09-05 05:47:46 +05:30
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
// GCC-compatible compiler assumed!
|
2014-04-09 05:45:08 +05:30
|
|
|
#include "common/atomic_gcc.h"
|
2013-09-05 05:47:46 +05:30
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|