this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Various LLDB fixes (also a threading memory leak fix)

+3 -1
+1 -1
cmake/dsym.cmake
··· 27 27 endif() 28 28 ") 29 29 30 - endif (DSYMUTIL_EXE) 30 + endif () 31 31 32 32 endfunction(dsym) 33 33
+2
src/libelfloader/native/threads.c
··· 89 89 pth = ((char*) pth) + stack_size + 0x1000; 90 90 pthread_attr_setstacksize(&attr, 4096); 91 91 92 + pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED); 93 + 92 94 args.pth = pth; 93 95 pthread_create(&nativeLibcThread, &attr, darling_thread_entry, &args); 94 96 pthread_attr_destroy(&attr);