mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-25 04:20:08 +01:00
util/mesa/wide: Rename _SIMPLE_MTX_INITIALIZER_NP to SIMPLE_MTX_INITIALIZER
Signed-off-by: Yonggang Luo <luoyonggang@gmail.com> Reviewed-by: Jesse Natalie <jenatali@microsoft.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/18393>
This commit is contained in:
parent
be3c46964b
commit
44ccaca41d
16 changed files with 18 additions and 18 deletions
|
|
@ -138,7 +138,7 @@ radv_amdgpu_winsys_get_chip_name(struct radeon_winsys *rws)
|
|||
return amdgpu_get_marketing_name(dev);
|
||||
}
|
||||
|
||||
static simple_mtx_t winsys_creation_mutex = _SIMPLE_MTX_INITIALIZER_NP;
|
||||
static simple_mtx_t winsys_creation_mutex = SIMPLE_MTX_INITIALIZER;
|
||||
static struct hash_table *winsyses = NULL;
|
||||
|
||||
static void
|
||||
|
|
|
|||
|
|
@ -47,7 +47,7 @@
|
|||
#endif
|
||||
|
||||
|
||||
static simple_mtx_t _eglGlobalMutex = _SIMPLE_MTX_INITIALIZER_NP;
|
||||
static simple_mtx_t _eglGlobalMutex = SIMPLE_MTX_INITIALIZER;
|
||||
|
||||
struct _egl_global _eglGlobal =
|
||||
{
|
||||
|
|
|
|||
|
|
@ -30,7 +30,7 @@
|
|||
#include "etnaviv_priv.h"
|
||||
#include "etnaviv_drmif.h"
|
||||
|
||||
simple_mtx_t etna_device_lock = _SIMPLE_MTX_INITIALIZER_NP;
|
||||
simple_mtx_t etna_device_lock = SIMPLE_MTX_INITIALIZER;
|
||||
|
||||
/* set buffer name, and add to table, call w/ etna_drm_table_lock held: */
|
||||
static void set_name(struct etna_bo *bo, uint32_t name)
|
||||
|
|
|
|||
|
|
@ -29,7 +29,7 @@
|
|||
#include "freedreno_drmif.h"
|
||||
#include "freedreno_priv.h"
|
||||
|
||||
simple_mtx_t table_lock = _SIMPLE_MTX_INITIALIZER_NP;
|
||||
simple_mtx_t table_lock = SIMPLE_MTX_INITIALIZER;
|
||||
void bo_del(struct fd_bo *bo);
|
||||
|
||||
/* set buffer name, and add to table, call w/ table_lock held: */
|
||||
|
|
|
|||
|
|
@ -164,7 +164,7 @@ struct crocus_bufmgr {
|
|||
bool bo_reuse:1;
|
||||
};
|
||||
|
||||
static simple_mtx_t global_bufmgr_list_mutex = _SIMPLE_MTX_INITIALIZER_NP;
|
||||
static simple_mtx_t global_bufmgr_list_mutex = SIMPLE_MTX_INITIALIZER;
|
||||
static struct list_head global_bufmgr_list = {
|
||||
.next = &global_bufmgr_list,
|
||||
.prev = &global_bufmgr_list,
|
||||
|
|
|
|||
|
|
@ -247,7 +247,7 @@ struct iris_bufmgr {
|
|||
struct iris_border_color_pool border_color_pool;
|
||||
};
|
||||
|
||||
static simple_mtx_t global_bufmgr_list_mutex = _SIMPLE_MTX_INITIALIZER_NP;
|
||||
static simple_mtx_t global_bufmgr_list_mutex = SIMPLE_MTX_INITIALIZER;
|
||||
static struct list_head global_bufmgr_list = {
|
||||
.next = &global_bufmgr_list,
|
||||
.prev = &global_bufmgr_list,
|
||||
|
|
|
|||
|
|
@ -44,7 +44,7 @@
|
|||
#include "sid.h"
|
||||
|
||||
static struct hash_table *dev_tab = NULL;
|
||||
static simple_mtx_t dev_tab_mutex = _SIMPLE_MTX_INITIALIZER_NP;
|
||||
static simple_mtx_t dev_tab_mutex = SIMPLE_MTX_INITIALIZER;
|
||||
|
||||
#if DEBUG
|
||||
DEBUG_GET_ONCE_BOOL_OPTION(all_bos, "RADEON_ALL_BOS", false)
|
||||
|
|
|
|||
|
|
@ -54,7 +54,7 @@ struct device_data {
|
|||
};
|
||||
|
||||
static struct hash_table_u64 *vk_object_to_data = NULL;
|
||||
static simple_mtx_t vk_object_to_data_mutex = _SIMPLE_MTX_INITIALIZER_NP;
|
||||
static simple_mtx_t vk_object_to_data_mutex = SIMPLE_MTX_INITIALIZER;
|
||||
|
||||
static inline void ensure_vk_object_map(void)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -650,7 +650,7 @@ buffer_usage_warning(struct gl_context *ctx, GLuint *id, const char *fmt, ...)
|
|||
* glBindBuffer() so that glIsBuffer() can work correctly.
|
||||
*/
|
||||
static struct gl_buffer_object DummyBufferObject = {
|
||||
.MinMaxCacheMutex = _SIMPLE_MTX_INITIALIZER_NP,
|
||||
.MinMaxCacheMutex = SIMPLE_MTX_INITIALIZER,
|
||||
.RefCount = 1000*1000*1000, /* never delete */
|
||||
};
|
||||
|
||||
|
|
|
|||
|
|
@ -86,7 +86,7 @@ delete_dummy_framebuffer(struct gl_framebuffer *fb)
|
|||
* with the real frame/renderbuffer.
|
||||
*/
|
||||
static struct gl_framebuffer DummyFramebuffer = {
|
||||
.Mutex = _SIMPLE_MTX_INITIALIZER_NP,
|
||||
.Mutex = SIMPLE_MTX_INITIALIZER,
|
||||
.Delete = delete_dummy_framebuffer,
|
||||
};
|
||||
static struct gl_renderbuffer DummyRenderbuffer = {
|
||||
|
|
@ -96,7 +96,7 @@ static struct gl_renderbuffer DummyRenderbuffer = {
|
|||
/* We bind this framebuffer when applications pass a NULL
|
||||
* drawable/surface in make current. */
|
||||
static struct gl_framebuffer IncompleteFramebuffer = {
|
||||
.Mutex = _SIMPLE_MTX_INITIALIZER_NP,
|
||||
.Mutex = SIMPLE_MTX_INITIALIZER,
|
||||
.Delete = delete_dummy_framebuffer,
|
||||
};
|
||||
|
||||
|
|
|
|||
|
|
@ -36,7 +36,7 @@
|
|||
|
||||
#include "state_tracker/st_context.h"
|
||||
|
||||
static simple_mtx_t override_lock = _SIMPLE_MTX_INITIALIZER_NP;
|
||||
static simple_mtx_t override_lock = SIMPLE_MTX_INITIALIZER;
|
||||
|
||||
/**
|
||||
* Scans 'string' to see if it ends with 'ending'.
|
||||
|
|
|
|||
|
|
@ -44,7 +44,7 @@ static struct rb_tree mmap_tree;
|
|||
|
||||
static struct util_dynarray ro_mappings;
|
||||
|
||||
static simple_mtx_t pandecode_lock = _SIMPLE_MTX_INITIALIZER_NP;
|
||||
static simple_mtx_t pandecode_lock = SIMPLE_MTX_INITIALIZER;
|
||||
|
||||
#define to_mapped_memory(x) \
|
||||
rb_node_data(struct pandecode_mapped_memory, x, node)
|
||||
|
|
|
|||
|
|
@ -59,7 +59,7 @@ int ut_perfetto_enabled;
|
|||
*/
|
||||
static struct list_head ctx_list = { &ctx_list, &ctx_list };
|
||||
|
||||
static simple_mtx_t ctx_list_mutex = _SIMPLE_MTX_INITIALIZER_NP;
|
||||
static simple_mtx_t ctx_list_mutex = SIMPLE_MTX_INITIALIZER;
|
||||
#endif
|
||||
|
||||
struct u_trace_payload_buf {
|
||||
|
|
|
|||
|
|
@ -77,7 +77,7 @@ typedef struct {
|
|||
uint32_t val;
|
||||
} simple_mtx_t;
|
||||
|
||||
#define _SIMPLE_MTX_INITIALIZER_NP { 0 }
|
||||
#define SIMPLE_MTX_INITIALIZER { 0 }
|
||||
|
||||
#define _SIMPLE_MTX_INVALID_VALUE 0xd0d0d0d0
|
||||
|
||||
|
|
@ -151,7 +151,7 @@ typedef struct simple_mtx_t {
|
|||
mtx_t mtx;
|
||||
} simple_mtx_t;
|
||||
|
||||
#define _SIMPLE_MTX_INITIALIZER_NP { UTIL_ONCE_FLAG_INIT }
|
||||
#define SIMPLE_MTX_INITIALIZER { UTIL_ONCE_FLAG_INIT }
|
||||
|
||||
void _simple_mtx_plain_init_once(simple_mtx_t *mtx);
|
||||
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@
|
|||
#include "vn_renderer.h"
|
||||
|
||||
struct vn_cs_renderer_protocol_info _vn_cs_renderer_protocol_info = {
|
||||
.mutex = _SIMPLE_MTX_INITIALIZER_NP,
|
||||
.mutex = SIMPLE_MTX_INITIALIZER,
|
||||
};
|
||||
|
||||
static void
|
||||
|
|
|
|||
|
|
@ -216,7 +216,7 @@ static const VkQueryPipelineStatisticFlags overlay_query_flags =
|
|||
#define OVERLAY_QUERY_COUNT (11)
|
||||
|
||||
static struct hash_table_u64 *vk_object_to_data = NULL;
|
||||
static simple_mtx_t vk_object_to_data_mutex = _SIMPLE_MTX_INITIALIZER_NP;
|
||||
static simple_mtx_t vk_object_to_data_mutex = SIMPLE_MTX_INITIALIZER;
|
||||
|
||||
thread_local ImGuiContext* __MesaImGui;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue