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

« back to all changes in this revision

Viewing changes to src/thread/windows/SDL_systls.c

  • 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:
20
20
*/
21
21
 
22
22
#include "SDL_config.h"
 
23
 
 
24
#if SDL_THREAD_WINDOWS
 
25
 
 
26
#include "../../core/windows/SDL_windows.h"
 
27
 
23
28
#include "SDL_thread.h"
24
29
#include "../SDL_thread_c.h"
25
30
 
26
 
#if SDL_THREAD_WINDOWS
27
 
 
28
 
#include "../../core/windows/SDL_windows.h"
29
 
 
30
 
 
31
31
static DWORD thread_local_storage = TLS_OUT_OF_INDEXES;
32
32
static SDL_bool generic_local_storage = SDL_FALSE;
33
33