Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 711162 Details for
Bug 786444
dev-cpp/gstreamermm-1.10.0 - /.../gatomic.h: error: argument 2 of _atomic_load must not be a pointer to a volatile type
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
gstreamermm-1.10.0-no-volatile.patch
gstreamermm-1.10.0-no-volatile.patch (text/plain), 856 bytes, created by
Andrew Savchenko
on 2021-05-25 15:17:48 UTC
(
hide
)
Description:
gstreamermm-1.10.0-no-volatile.patch
Filename:
MIME Type:
Creator:
Andrew Savchenko
Created:
2021-05-25 15:17:48 UTC
Size:
856 bytes
patch
obsolete
>https://bugs.gentoo.org/786444 > >g_once_init_enter(void*) should NOT be passed a volatile argument: >https://developer.gnome.org/glib/stable/glib-Threads.html#g-once-init-enter >"While location has a volatile qualifier, this is a historical >artifact and the pointer passed to it should not be volatile." >--- gstreamermm-1.10.0/gstreamer/gstreamermm/register.h.orig 2017-10-20 12:26:46.000000000 +0300 >+++ gstreamermm-1.10.0/gstreamer/gstreamermm/register.h 2021-05-25 17:52:13.031337753 +0300 >@@ -110,7 +110,7 @@ > /* The typedef for GType may be gulong or gsize, depending on the > * system and whether the compiler is c++ or not. The g_once_init_* > * functions always take a gsize * though ... */ >- static volatile gsize gonce_data = 0; >+ static gsize gonce_data = 0; > if (g_once_init_enter (&gonce_data)) { > GTypeInfo info; >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 786444
:
703218
|
703221
|
703224
|
703227
|
703230
|
703233
|
703236
| 711162