~ubuntu-branches/ubuntu/vivid/libsdl2/vivid

« back to all changes in this revision

Viewing changes to include/SDL_atomic.h

  • Committer: Package Import Robot
  • Author(s): Manuel A. Fernandez Montecelo, Felix Geyer
  • Date: 2013-12-28 12:31:19 UTC
  • mfrom: (1.1.3)
  • Revision ID: package-import@ubuntu.com-20131228123119-e0k27gckmnzskfgb
Tags: 2.0.1+dfsg1-1
* New upstream release (Closes: #728974)
  - Remove patch applied upstream:
    bug-723797-false_positives_in_mouse_wheel_code.patch
* Bump Standards-Version to 3.9.5, no changes needed.

[ Felix Geyer ]
* Import upstream gpg key for uscan to verify the orig tarball.

Show diffs side-by-side

added added

removed removed

Lines of Context:
91
91
 * The spin lock functions and type are required and can not be
92
92
 * emulated because they are used in the atomic emulation code.
93
93
 */
94
 
/*@{*/
 
94
/* @{ */
95
95
 
96
96
typedef int SDL_SpinLock;
97
97
 
118
118
 */
119
119
extern DECLSPEC void SDLCALL SDL_AtomicUnlock(SDL_SpinLock *lock);
120
120
 
121
 
/*@}*//*SDL AtomicLock*/
 
121
/* @} *//* SDL AtomicLock */
122
122
 
123
123
 
124
124
/**