SDL/src/thread
Ryan C. Gordon 16cdc59bab Make SDL_SetError and friends unconditionally return -1.
This lets us change things like this...

    if (Failed) {
        SDL_SetError("We failed");
        return -1;
    }

...into this...

    if (Failed) {
        return SDL_SetError("We failed");
    }


 Fixes Bugzilla #1778.
2013-03-31 12:48:50 -04:00
..
beos Make SDL_SetError and friends unconditionally return -1. 2013-03-31 12:48:50 -04:00
generic Make SDL_SetError and friends unconditionally return -1. 2013-03-31 12:48:50 -04:00
psp Make SDL_SetError and friends unconditionally return -1. 2013-03-31 12:48:50 -04:00
pthread Make SDL_SetError and friends unconditionally return -1. 2013-03-31 12:48:50 -04:00
windows Make SDL_SetError and friends unconditionally return -1. 2013-03-31 12:48:50 -04:00
SDL_systhread.h Happy New Year! 2013-02-15 08:47:44 -08:00
SDL_thread_c.h Removed Nintendo DS support since nobody has volunteered to maintain it for over a year. 2013-03-17 09:44:58 -07:00
SDL_thread.c Changed the name of SDL_mutexP() SDL_mutexV() 2013-03-07 20:12:40 -08:00