~ubuntu-branches/ubuntu/vivid/pango1.0/vivid-proposed

« back to all changes in this revision

Viewing changes to pango/opentype/hb-private.h

  • Committer: Package Import Robot
  • Author(s): Michael Biebl
  • Date: 2012-03-31 22:00:53 UTC
  • mfrom: (1.8.6) (63.1.16 experimental)
  • Revision ID: package-import@ubuntu.com-20120331220053-7w1irtk74gutqgmi
Tags: 1.30.0-1
* New upstream release.
* debian/watch: Track stable releases again.
* Refreshed and updated patches.
* Bump Standards-Version to 3.9.3.

Show diffs side-by-side

added added

removed removed

Lines of Context:
62
62
#define hb_be_int32(v)          GINT32_FROM_BE (v)
63
63
 
64
64
typedef int hb_atomic_int_t;
 
65
#if !GLIB_CHECK_VERSION(2,29,5)
65
66
#define hb_atomic_int_fetch_and_add(AI, V)      g_atomic_int_exchange_and_add (&(AI), V)
 
67
#else
 
68
#define hb_atomic_int_fetch_and_add(AI, V)      g_atomic_int_add (&(AI), V)
 
69
#endif
66
70
#define hb_atomic_int_get(AI)                   g_atomic_int_get (&(AI))
67
71
#define hb_atomic_int_set(AI, V)                g_atomic_int_set (&(AI), V)
68
72