HomeSort by relevance Sort by last modified time
    Searched refs:minstacksize (Results 1 - 2 of 2) sorted by null

  /external/compiler-rt/lib/msan/
msan_interceptors.cc 842 const uptr minstacksize = GetTlsSize() + 128*1024; local
843 if (stacksize < minstacksize) {
846 minstacksize);
847 pthread_attr_setstacksize(attr, minstacksize);
  /external/compiler-rt/lib/tsan/rtl/
tsan_interceptors.cc 744 const uptr minstacksize = GetTlsSize() + 128*1024; local
745 if (stacksize < minstacksize) {
746 DPrintf("ThreadSanitizer: stacksize %zu->%zu\n", stacksize, minstacksize);
747 pthread_attr_setstacksize(attr, minstacksize);
    [all...]

Completed in 76 milliseconds