From 26996e2c024eae8477b49a733582557c2474c736 Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Thu, 18 Jan 2024 06:11:55 -0800 Subject: [PATCH] We've decided to keep separate functions for creating a thread with and without stack size specified. Fixes https://github.com/libsdl-org/SDL/issues/6652 --- include/SDL3/SDL_thread.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/include/SDL3/SDL_thread.h b/include/SDL3/SDL_thread.h index 22b91cbab..3fe881e5d 100644 --- a/include/SDL3/SDL_thread.h +++ b/include/SDL3/SDL_thread.h @@ -220,10 +220,6 @@ SDL_CreateThread(SDL_ThreadFunction fn, const char *name, void *data); * multiple of the system's page size (in many cases, this is 4 kilobytes, but * check your system documentation). * - * In SDL 2.1, stack size will be folded into the original SDL_CreateThread - * function, but for backwards compatibility, this is currently a separate - * function. - * * \param fn the SDL_ThreadFunction function to call in the new thread * \param name the name of the thread * \param stacksize the size, in bytes, to allocate for the new thread stack.