暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

12345678910111213141516171819202122232425262728
  1. #pragma once
  2. #include "il2cpp-config.h"
  3. #if IL2CPP_GC_BOEHM
  4. /* here is the defines we build Boehm with */
  5. #define IGNORE_DYNAMIC_LOADING 1
  6. #define GC_DONT_REGISTER_MAIN_STATIC_DATA 1
  7. #if IL2CPP_HAS_GC_DESCRIPTORS
  8. #define GC_GCJ_SUPPORT 1
  9. #endif
  10. #if IL2CPP_SUPPORT_THREADS
  11. #define GC_THREADS 1
  12. #endif
  13. #include "gc.h"
  14. #include "gc_typed.h"
  15. #include "gc_mark.h"
  16. #include "gc_gcj.h"
  17. #include "gc_vector.h"
  18. #define GC_NO_DESCRIPTOR ((void*)(0 | GC_DS_LENGTH))
  19. #else
  20. #define GC_NO_DESCRIPTOR ((void*)0)
  21. #endif