Merge pull request #12097 from crystalct/master

Fix SYS_THREAD_CREATE_JOINABLE on PSL1GHT
This commit is contained in:
Autechre 2021-03-04 13:28:52 +01:00 committed by GitHub
commit bd209eab1f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -276,8 +276,8 @@ extern int audioAddData(uint32_t portNum, float *data,
#ifdef __PSL1GHT__
#include <sys/thread.h>
/* FIXME - not sure if this is correct */
#define SYS_THREAD_CREATE_JOINABLE 0
/* FIXME - not sure if this is correct -> FIXED! 1 and not 0 */
#define SYS_THREAD_CREATE_JOINABLE THREAD_JOINABLE
#else
#include <sys/ppu_thread.h>