/usr/include/d/gtkd-3/glib/Atomic.d is in libgtkd-3-dev 3.7.5-2build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 | /*
* This file is part of gtkD.
*
* gtkD 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 3
* of the License, or (at your option) any later version, with
* some exceptions, please read the COPYING file.
*
* gtkD 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.
*
* You should have received a copy of the GNU Lesser General Public License
* along with gtkD; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110, USA
*/
// generated automatically - do not change
// find conversion definition on APILookup.txt
// implement new conversion functionalities on the wrap.utils pakage
module glib.Atomic;
private import glib.c.functions;
public import glib.c.types;
public import gtkc.glibtypes;
/** */
public struct Atomic
{
/**
* Atomically adds @val to the value of @atomic.
*
* Think of this operation as an atomic version of
* `{ tmp = *atomic; *atomic += val; return tmp; }`.
*
* This call acts as a full compiler and hardware memory barrier.
*
* Before version 2.30, this function did not return a value
* (but g_atomic_int_exchange_and_add() did, and had the same meaning).
*
* Params:
* atomic = a pointer to a #gint or #guint
* val = the value to add
*
* Returns: the value of @atomic before the add, signed
*
* Since: 2.4
*/
public static int intAdd(int* atomic, int val)
{
return g_atomic_int_add(atomic, val);
}
/**
* Performs an atomic bitwise 'and' of the value of @atomic and @val,
* storing the result back in @atomic.
*
* This call acts as a full compiler and hardware memory barrier.
*
* Think of this operation as an atomic version of
* `{ tmp = *atomic; *atomic &= val; return tmp; }`.
*
* Params:
* atomic = a pointer to a #gint or #guint
* val = the value to 'and'
*
* Returns: the value of @atomic before the operation, unsigned
*
* Since: 2.30
*/
public static uint intAnd(uint* atomic, uint val)
{
return g_atomic_int_and(atomic, val);
}
/**
* Compares @atomic to @oldval and, if equal, sets it to @newval.
* If @atomic was not equal to @oldval then no change occurs.
*
* This compare and exchange is done atomically.
*
* Think of this operation as an atomic version of
* `{ if (*atomic == oldval) { *atomic = newval; return TRUE; } else return FALSE; }`.
*
* This call acts as a full compiler and hardware memory barrier.
*
* Params:
* atomic = a pointer to a #gint or #guint
* oldval = the value to compare with
* newval = the value to conditionally replace with
*
* Returns: %TRUE if the exchange took place
*
* Since: 2.4
*/
public static bool intCompareAndExchange(int* atomic, int oldval, int newval)
{
return g_atomic_int_compare_and_exchange(atomic, oldval, newval) != 0;
}
/**
* Decrements the value of @atomic by 1.
*
* Think of this operation as an atomic version of
* `{ *atomic -= 1; return (*atomic == 0); }`.
*
* This call acts as a full compiler and hardware memory barrier.
*
* Params:
* atomic = a pointer to a #gint or #guint
*
* Returns: %TRUE if the resultant value is zero
*
* Since: 2.4
*/
public static bool intDecAndTest(int* atomic)
{
return g_atomic_int_dec_and_test(atomic) != 0;
}
/**
* This function existed before g_atomic_int_add() returned the prior
* value of the integer (which it now does). It is retained only for
* compatibility reasons. Don't use this function in new code.
*
* Deprecated: Use g_atomic_int_add() instead.
*
* Params:
* atomic = a pointer to a #gint
* val = the value to add
*
* Returns: the value of @atomic before the add, signed
*
* Since: 2.4
*/
public static int intExchangeAndAdd(int* atomic, int val)
{
return g_atomic_int_exchange_and_add(atomic, val);
}
/**
* Gets the current value of @atomic.
*
* This call acts as a full compiler and hardware
* memory barrier (before the get).
*
* Params:
* atomic = a pointer to a #gint or #guint
*
* Returns: the value of the integer
*
* Since: 2.4
*/
public static int intGet(int* atomic)
{
return g_atomic_int_get(atomic);
}
/**
* Increments the value of @atomic by 1.
*
* Think of this operation as an atomic version of `{ *atomic += 1; }`.
*
* This call acts as a full compiler and hardware memory barrier.
*
* Params:
* atomic = a pointer to a #gint or #guint
*
* Since: 2.4
*/
public static void intInc(int* atomic)
{
g_atomic_int_inc(atomic);
}
/**
* Performs an atomic bitwise 'or' of the value of @atomic and @val,
* storing the result back in @atomic.
*
* Think of this operation as an atomic version of
* `{ tmp = *atomic; *atomic |= val; return tmp; }`.
*
* This call acts as a full compiler and hardware memory barrier.
*
* Params:
* atomic = a pointer to a #gint or #guint
* val = the value to 'or'
*
* Returns: the value of @atomic before the operation, unsigned
*
* Since: 2.30
*/
public static uint intOr(uint* atomic, uint val)
{
return g_atomic_int_or(atomic, val);
}
/**
* Sets the value of @atomic to @newval.
*
* This call acts as a full compiler and hardware
* memory barrier (after the set).
*
* Params:
* atomic = a pointer to a #gint or #guint
* newval = a new value to store
*
* Since: 2.4
*/
public static void intSet(int* atomic, int newval)
{
g_atomic_int_set(atomic, newval);
}
/**
* Performs an atomic bitwise 'xor' of the value of @atomic and @val,
* storing the result back in @atomic.
*
* Think of this operation as an atomic version of
* `{ tmp = *atomic; *atomic ^= val; return tmp; }`.
*
* This call acts as a full compiler and hardware memory barrier.
*
* Params:
* atomic = a pointer to a #gint or #guint
* val = the value to 'xor'
*
* Returns: the value of @atomic before the operation, unsigned
*
* Since: 2.30
*/
public static uint intXor(uint* atomic, uint val)
{
return g_atomic_int_xor(atomic, val);
}
/**
* Atomically adds @val to the value of @atomic.
*
* Think of this operation as an atomic version of
* `{ tmp = *atomic; *atomic += val; return tmp; }`.
*
* This call acts as a full compiler and hardware memory barrier.
*
* Params:
* atomic = a pointer to a #gpointer-sized value
* val = the value to add
*
* Returns: the value of @atomic before the add, signed
*
* Since: 2.30
*/
public static ptrdiff_t pointerAdd(void* atomic, ptrdiff_t val)
{
return g_atomic_pointer_add(atomic, val);
}
/**
* Performs an atomic bitwise 'and' of the value of @atomic and @val,
* storing the result back in @atomic.
*
* Think of this operation as an atomic version of
* `{ tmp = *atomic; *atomic &= val; return tmp; }`.
*
* This call acts as a full compiler and hardware memory barrier.
*
* Params:
* atomic = a pointer to a #gpointer-sized value
* val = the value to 'and'
*
* Returns: the value of @atomic before the operation, unsigned
*
* Since: 2.30
*/
public static size_t pointerAnd(void* atomic, size_t val)
{
return g_atomic_pointer_and(atomic, val);
}
/**
* Compares @atomic to @oldval and, if equal, sets it to @newval.
* If @atomic was not equal to @oldval then no change occurs.
*
* This compare and exchange is done atomically.
*
* Think of this operation as an atomic version of
* `{ if (*atomic == oldval) { *atomic = newval; return TRUE; } else return FALSE; }`.
*
* This call acts as a full compiler and hardware memory barrier.
*
* Params:
* atomic = a pointer to a #gpointer-sized value
* oldval = the value to compare with
* newval = the value to conditionally replace with
*
* Returns: %TRUE if the exchange took place
*
* Since: 2.4
*/
public static bool pointerCompareAndExchange(void* atomic, void* oldval, void* newval)
{
return g_atomic_pointer_compare_and_exchange(atomic, oldval, newval) != 0;
}
/**
* Gets the current value of @atomic.
*
* This call acts as a full compiler and hardware
* memory barrier (before the get).
*
* Params:
* atomic = a pointer to a #gpointer-sized value
*
* Returns: the value of the pointer
*
* Since: 2.4
*/
public static void* pointerGet(void* atomic)
{
return g_atomic_pointer_get(atomic);
}
/**
* Performs an atomic bitwise 'or' of the value of @atomic and @val,
* storing the result back in @atomic.
*
* Think of this operation as an atomic version of
* `{ tmp = *atomic; *atomic |= val; return tmp; }`.
*
* This call acts as a full compiler and hardware memory barrier.
*
* Params:
* atomic = a pointer to a #gpointer-sized value
* val = the value to 'or'
*
* Returns: the value of @atomic before the operation, unsigned
*
* Since: 2.30
*/
public static size_t pointerOr(void* atomic, size_t val)
{
return g_atomic_pointer_or(atomic, val);
}
/**
* Sets the value of @atomic to @newval.
*
* This call acts as a full compiler and hardware
* memory barrier (after the set).
*
* Params:
* atomic = a pointer to a #gpointer-sized value
* newval = a new value to store
*
* Since: 2.4
*/
public static void pointerSet(void* atomic, void* newval)
{
g_atomic_pointer_set(atomic, newval);
}
/**
* Performs an atomic bitwise 'xor' of the value of @atomic and @val,
* storing the result back in @atomic.
*
* Think of this operation as an atomic version of
* `{ tmp = *atomic; *atomic ^= val; return tmp; }`.
*
* This call acts as a full compiler and hardware memory barrier.
*
* Params:
* atomic = a pointer to a #gpointer-sized value
* val = the value to 'xor'
*
* Returns: the value of @atomic before the operation, unsigned
*
* Since: 2.30
*/
public static size_t pointerXor(void* atomic, size_t val)
{
return g_atomic_pointer_xor(atomic, val);
}
}
|