SDL_CreateAsyncIOQueue - Man Page
Create a task queue for tracking multiple I/O operations.
Synopsis
#include <SDL3/SDL_asyncio.h> SDL_AsyncIOQueue * SDL_CreateAsyncIOQueue(void);
Description
Async I/O operations are assigned to a queue when started. The queue can be checked for completed tasks thereafter.
Return Value
Returns a new task queue object or NULL if there was an error; call SDL_GetError() for more information.
Thread Safety
It is safe to call this function from any thread.
Availability
This function is available since SDL 3.2.0.
See Also
SDL_DestroyAsyncIOQueue(3), SDL_GetAsyncIOResult(3), SDL_WaitAsyncIOResult(3)
Referenced By
SDL_AsyncIOQueue.3type(3), SDL_ReadAsyncIO(3), SDL_WriteAsyncIO(3).
SDL 3.2.16 Simple Directmedia Layer SDL3 FUNCTIONS