summaryrefslogtreecommitdiff
path: root/test/torturethread.c
Commit message (Collapse)AuthorAgeFilesLines
* Updated copyright for 2021Sam Lantinga2021-01-021-1/+1
|
* Updated copyright date for 2020Sam Lantinga2020-01-161-1/+1
|
* Updated copyright for 2019Sam Lantinga2019-01-041-1/+1
|
* Updated copyright for 2018Sam Lantinga2018-01-031-1/+1
|
* Updated copyright for 2017Sam Lantinga2017-01-011-1/+1
|
* Remove almost all instances of "volatile" keyword.Ryan C. Gordon2016-01-031-4/+4
| | | | | | | | | | | As Tiffany pointed out in Bugzilla, volatile is not useful for thread safety: https://software.intel.com/en-us/blogs/2007/11/30/volatile-almost-useless-for-multi-threaded-programming/ Some of these volatiles didn't need to be, some were otherwise protected by spinlocks or mutexes, and some got moved over to SDL_atomic_t data, etc. Fixes Bugzilla #3220.
* Updated copyright to 2016Sam Lantinga2016-01-021-1/+1
|
* Replaced tabs with spaces in test programs.Philipp Wiesemann2015-11-251-1/+1
|
* Stack hint should look for 0, not -1, and not care about environment variables.Ryan C. Gordon2015-05-261-2/+0
|
* Added a hint to specify new thread stack size (thanks, Gabriel!).Ryan C. Gordon2015-05-261-0/+2
| | | | | | Fixes Bugzilla #2019. (we'll do a better fix when we break the API in SDL 2.1.)
* Updated the copyright year to 2015Sam Lantinga2015-05-261-1/+1
|
* Removed redundant include statements from test programs.Philipp Wiesemann2015-02-181-1/+0
| | | | | The needed header files are already included with SDL.h. Still including them in the test programs is confusing because it somehow suggests they would be needed.
* Fixed bug 2374 - Update copyright for 2014...Sam Lantinga2014-02-021-1/+1
| | | | Is it that time already??
* OCD fixes: Adds a space after /* (glory to regular expressions!)Gabriel Jacobo2013-08-211-1/+1
|
* Fix bug 2034: replace printf by SDL_Log in tests; update loopwave VS ↵Andreas Schiffler2013-08-141-6/+9
| | | | solution: copy missing dependency
* Updated the copyright year for the test programsSam Lantinga2013-07-251-1/+1
|
* 1.3 API CHANGE: Add support for naming threads.Ryan C. Gordon2011-10-021-2/+6
|
* SDL 1.3 is now under the zlib license.Sam Lantinga2011-04-081-0/+11
|
* SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.Sam Lantinga2006-07-101-60/+65
|
* Fixed bug #215Sam Lantinga2006-05-071-2/+2
| | | | | | | | | The current SVN trunk is missing the SDLCALL specifier at numerous locations. It has to be added for all (possibly user provided) callbacks. I stumbled over this while creating a makefile for the OpenWatcom compiler for Win32.
* *** empty log message ***Sam Lantinga2006-04-121-1/+1
|
* Ugh, more 64-bit cleanupSam Lantinga2006-03-311-3/+3
|
* Might have fixed 64-bit issues. :)Sam Lantinga2006-03-111-2/+2
|
* Fixed compiler warnings in Watcom C.Ryan C. Gordon2005-10-031-1/+1
|
* Removed atexit() from most of the test programs; atexit(SDL_Quit) isn't safeRyan C. Gordon2005-09-281-5/+11
| | | | | | | | | | if SDL is built with a non-cdecl calling convention, and it's just generally bad practice anyhow. Now programs explicitly call SDL_Quit() where appropriate, wrap SDL_Quit() in a cdecl function where it can't be avoided, and rely on the parachute where a crash might have hit the atexit() before (these ARE test programs, after all!).
* Initial revisionSam Lantinga2001-04-261-0/+85