]> git.sesse.net Git - vlc/blobdiff - include/vlc_atomic.h
Use var_InheritString for --decklink-video-connection.
[vlc] / include / vlc_atomic.h
index 9370fbc899b4d36ea70678e2daab267079a9f50a..51acccc726e3306ea33dff71a008b1447bed6f2f 100644 (file)
  * Atomic operations do not require locking, but they are not very powerful.
  */
 
-/**
- * Memory storage space for an atom. Never access it directly.
- */
-typedef union
-{
-    volatile uintptr_t u;
-    volatile intptr_t  s;
-} vlc_atomic_t;
-
 /* All functions return the atom value _after_ the operation. */
 
 VLC_EXPORT(uintptr_t, vlc_atomic_get, (const vlc_atomic_t *));