1. 25 8月, 2023 1 次提交
  2. 12 5月, 2023 1 次提交
  3. 29 1月, 2023 1 次提交
  4. 21 1月, 2023 1 次提交
  5. 05 10月, 2022 1 次提交
  6. 02 8月, 2022 1 次提交
  7. 24 7月, 2022 1 次提交
  8. 17 7月, 2022 1 次提交
    • A
      Fix typos (#72314) · 3ea30ed3
      Adeel Mujahid 提交于
      * Fix typos
      
      * Cleanup trailing whitespaces in committed files
      
      * Revert a macro for win32 compat
      
      * Disambiguate test data method
      
      * Revert XMLPath test which rely on external assets
      
      * Revert whitespace change in Xml tests
      
      * Revert ClrEtwAl and ILLink.Shared
      
      * Revert crossgen2 props/targets and *.wxl
      3ea30ed3
  9. 25 6月, 2022 1 次提交
  10. 23 6月, 2022 1 次提交
  11. 22 6月, 2022 1 次提交
  12. 01 6月, 2022 1 次提交
    • A
      Remove more wprintf usages (#69912) · c3e0c8a3
      Aaron Robinson 提交于
      * Remove wprintf from eventpipe.
      
      * Remove messagebox logic from utils and place its single usage
        under debug/.
      
      * Convert Profiler GUID logging to use UTF-8
      c3e0c8a3
  13. 17 5月, 2022 1 次提交
  14. 08 5月, 2022 1 次提交
  15. 06 1月, 2022 1 次提交
  16. 27 11月, 2021 1 次提交
    • A
      Fix miscellaneous typos (#62062) · 03e0187a
      Adeel Mujahid 提交于
      * Fix miscellaneous typos
      
      * Cleanup trailing whitespaces
      ```sh
      # git remote add dotnet https://github.com/dotnet/runtime && git pull --rebase dotnet main
      
      if uname 2>/devnull | grep -q Darwin; then
          space=" "
      fi
      
      git show --name-only --pretty="" HEAD...dotnet/main |\
          xargs -I{} sh -c "test -f {} && sed -i$space'' 's/[[:space:]]*$//' {}"
      ```
      03e0187a
  17. 08 12月, 2020 1 次提交
    • T
      December infra rollout - remove duplicated 'src' from coreclr subrepo... · 69e114c1
      Tomáš Rylek 提交于
      December infra rollout - remove duplicated 'src' from coreclr subrepo (src/coreclr/src becomes src/coreclr) (#44973)
      
      * Move src/coreclr/src/Directory.Build.targets to src/coreclr
      Merge src/coreclr/src/CMakeLists.txt into src/coreclr/CMakeLists.txt
      
      * Mechanical move of src/coreclr/src to src/coreclr
      
      * Scripts adjustments to reflect the changed paths
      69e114c1
  18. 10 10月, 2020 1 次提交
    • A
      Fix various typos (#43073) · 44861645
      Adeel Mujahid 提交于
      * Fix various typos
      * `occurence`, `occurance` -> `occurrence`
      * `accross` -> `across`
      * `adddress`, `addresss` -> `address`
      * `alignement`, `aligment` -> `alignment`
      * Remove `c` from triple c.
      * Remove `s` from triple s.
        * In palsuite, `Successs` (with triple s) was in commented out
          `Trace()` message, removed all commented out `Trace()` calls
          from such files.
      * Fix invalid markdown in `unix-test-instructions.md`.
      
      * Revert event source change
      44861645
  19. 08 7月, 2020 1 次提交
  20. 15 5月, 2020 1 次提交
  21. 01 5月, 2020 1 次提交
  22. 06 2月, 2020 1 次提交
    • S
      Add EMPTY_BASES_DECL (#26980) · db5277de
      Steve MacLean 提交于
      * Add EMPTY_BASES_DECL
      
      Add EMPTY_BASES_DECL to use MSVC __declspec(empty_bases).
      This declaration tells MSVC to collapse empty base classes to
      consume no space, as opposed to its default layout algoritihm
      which requires base classes to consume at least one byte (in
      multiple inheritance situations).
      
      Mark a few classes which can contain empy base classes and may cause
      layout differences between Windows and Clang
      
      * Fix MapSHash deserialization
      db5277de
  23. 02 11月, 2019 1 次提交
  24. 17 5月, 2019 1 次提交
  25. 02 5月, 2019 1 次提交
  26. 20 2月, 2016 1 次提交
  27. 28 1月, 2016 1 次提交
  28. 26 9月, 2015 1 次提交
  29. 07 3月, 2015 1 次提交
    • M
      Add a fourth parameter to the DEFINE_DACVAR macro that is the actual fully... · 430cfc34
      Mike McLaughlin 提交于
      Add a fourth parameter to the DEFINE_DACVAR macro that is the actual fully qualified name of the static/global.
      
      First pass at the global DAC table support for Linux. Explicitly build the table in the coreclr module instead of extract it from the pdb and put it in a resource.
      
      Fixed the SVR gc globals in the DAC table. They had to be seperated and initialized in gceesvr.cpp.
      
      Start on global pointer table.
      
      PAL functions to write and read the DAC table address between processes.
      
      The dac table is now copied from the coreclr process to the DAC/debugger process.  The tables were not being built with exactly the same defines so they weren't the same size. Fixed a bug in the read memory implementation. Still assumes pid = 0.
      
      Changed the dacTable entries to be RVAs and renabled getting the corclr module base addres (m_globalBase). Added dac table address file cleanup on coreclr shutdown.
      
      Filled in the vtable entries in the global dac table.  Changed some of the VPTR_* macros to be defined on the coreclr side (RS) to defined a constructor that is used to get the vtable in dactable.cpp. These changes required default constructors to be added to some of the classes.
      
      Changed getting the vtable address to not invoke the destructors since the constructor used didn't do anything (like initialize variables, etc.).
      
      Added a TODO comment about the debuggee pid not being available in the dac table address file name.
      
      Fixed Windows build. Created a couple of new VPTR_* macros that add a default constructor only if building coreclr (not DAC) on Linux.
      
      Comment on how these DAC table functions are temporary.
      
      
      Commit migrated from https://github.com/dotnet/coreclr/commit/eaed12c0dc4e458e89ce03685c21a697787c5b67
      430cfc34
  30. 31 1月, 2015 1 次提交