logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

al_create_thread_with_stacksize - Allegro 5 API

Description

       Spawn  a  new  thread  with  the  give stacksize in bytes which begins executing proc.  The new thread is
       passed its own thread handle and the value arg.

       Returns a pointer to the thread on success.  Otherwise, returns NULL if there was an error.

Name

       al_create_thread_with_stacksize - Allegro 5 API

See Also

al_start_thread(3alleg5), al_join_thread(3alleg5).

Allegro reference manual                                                al_create_thread_with_stacksize(3alleg5)

Since

       5.2.5

              [UnstableAPI]: New API, may want a better way to specify thread options.

Synopsis

              #include <allegro5/allegro.h>

              ALLEGRO_THREAD *al_create_thread_with_stacksize(
                 void *(*proc)(ALLEGRO_THREAD *thread, void *arg), void *arg, size_t stacksize)

See Also