vkd3d-proton/include/private/vkd3d_common.h

56 lines
1.7 KiB
C
Raw Normal View History

2016-09-21 11:57:24 +01:00
/*
* Copyright 2016 Józef Kucia for CodeWeavers
*
2017-06-16 20:05:54 +01:00
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
2016-09-21 11:57:24 +01:00
*
2017-06-16 20:05:54 +01:00
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
2016-09-21 11:57:24 +01:00
*
2017-06-16 20:05:54 +01:00
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
2016-09-21 11:57:24 +01:00
*/
#ifndef __VKD3D_COMMON_H
#define __VKD3D_COMMON_H
#include "config.h"
#include "vkd3d_windows.h"
#define ARRAY_SIZE(x) (sizeof(x) / sizeof(*(x)))
#ifdef __GNUC__
# define VKD3D_PRINTF_FUNC(fmt, args) __attribute__((format(printf, fmt, args)))
# define VKD3D_UNUSED __attribute__((unused))
#else
# define VKD3D_PRINTF_FUNC(fmt, args)
# define VKD3D_UNUSED
#endif /* __GNUC__ */
#ifndef _WIN32
# if HAVE_SYNC_ADD_AND_FETCH
static inline LONG InterlockedIncrement(LONG volatile *x)
2016-09-21 11:57:24 +01:00
{
return __sync_add_and_fetch(x, 1);
}
# else
# error "InterlockedIncrement not implemented for this platform"
# endif /* HAVE_SYNC_ADD_AND_FETCH */
2016-09-21 11:57:24 +01:00
# if HAVE_SYNC_SUB_AND_FETCH
static inline LONG InterlockedDecrement(LONG volatile *x)
2016-09-21 11:57:24 +01:00
{
return __sync_sub_and_fetch(x, 1);
}
# else
# error "InterlockedDecrement not implemented for this platform"
# endif
#endif /* _WIN32 */
2016-09-21 11:57:24 +01:00
#endif /* __VKD3D_COMMON_H */